diff options
author | Alex Auvolat <alex@adnab.me> | 2022-04-20 14:14:15 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-04-20 14:14:15 +0200 |
commit | a8717f9bf5dbc9b102d872678f4e5d3d2790a408 (patch) | |
tree | 3cbee336ec67f9a1758de462480a8eccce3e0342 /gen_wesher_key | |
parent | d056b385d71d5b33165ab87cbedffb243d168c8a (diff) | |
download | nixcfg-a8717f9bf5dbc9b102d872678f4e5d3d2790a408.tar.gz nixcfg-a8717f9bf5dbc9b102d872678f4e5d3d2790a408.zip |
manage wesher key with pass
Diffstat (limited to 'gen_wesher_key')
-rwxr-xr-x | gen_wesher_key | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gen_wesher_key b/gen_wesher_key new file mode 100755 index 0000000..c66fade --- /dev/null +++ b/gen_wesher_key @@ -0,0 +1,17 @@ +#!/usr/bin/env sh + +cd $(dirname $0) + +CLUSTER="$1" +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 +fi + +K=deuxfleurs/cluster/$CLUSTER/wesher_key +if ! pass $K >/dev/null; then + pass insert -m $K <<EOF +WESHER_CLUSTER_KEY=$(head -c 32 /dev/urandom | base64) +EOF +fi |