aboutsummaryrefslogtreecommitdiff
path: root/genpki.sh
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-04-20 14:14:15 +0200
committerAlex Auvolat <alex@adnab.me>2022-04-20 14:14:15 +0200
commita8717f9bf5dbc9b102d872678f4e5d3d2790a408 (patch)
tree3cbee336ec67f9a1758de462480a8eccce3e0342 /genpki.sh
parentd056b385d71d5b33165ab87cbedffb243d168c8a (diff)
downloadnixcfg-a8717f9bf5dbc9b102d872678f4e5d3d2790a408.tar.gz
nixcfg-a8717f9bf5dbc9b102d872678f4e5d3d2790a408.zip
manage wesher key with pass
Diffstat (limited to 'genpki.sh')
-rwxr-xr-xgenpki.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/genpki.sh b/genpki.sh
index d41d3b8..6afb160 100755
--- a/genpki.sh
+++ b/genpki.sh
@@ -7,7 +7,7 @@ set -xe
cd $(dirname $0)
CLUSTER="$1"
-if [ ! -d "cluster/$CLUSTER" ]; then
+if [ -z "$CLUSTER" ] || [ ! -d "cluster/$CLUSTER" ]; then
echo "Usage: $0 <cluster name>"
echo "The cluster name must be the name of a subdirectory of cluster/"
exit 1