summaryrefslogtreecommitdiffstats
path: root/lib/container/key
diff options
context:
space:
mode:
Diffstat (limited to 'lib/container/key')
-rwxr-xr-xlib/container/key7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/container/key b/lib/container/key
index 46c6130..1b59555 100755
--- a/lib/container/key
+++ b/lib/container/key
@@ -1,6 +1,5 @@
#!/bin/sh
-# container-tools - Manage systemd-nspawn containers
# Copyright (C) 2014-2019 Daniel Baumann <daniel.baumann@open-infrastructure.net>
#
# SPDX-License-Identifier: GPL-3.0+
@@ -20,9 +19,11 @@
set -e
+PROJECT="open-infrastructure"
+PROGRAM="container"
COMMAND="$(basename ${0})"
-KEYS="/etc/container-tools/keys"
+KEYS="/etc/${PROJECT}/${PROGRAM}/keys"
Parameters ()
{
@@ -74,7 +75,7 @@ Parameters ()
Usage ()
{
- echo "Usage: container ${COMMAND} [-a|--add KEY] [-l|--list] [-r|--remove KEY]" >&2
+ echo "Usage: ${PROGRAM} ${COMMAND} [-a|--add KEY] [-l|--list] [-r|--remove KEY]" >&2
exit 1
}