diff options
Diffstat (limited to 'bin/copy-secrets')
-rwxr-xr-x | bin/copy-secrets | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/bin/copy-secrets b/bin/copy-secrets index 36854eaf1..5ef94b09c 100755 --- a/bin/copy-secrets +++ b/bin/copy-secrets @@ -1,23 +1,25 @@ #! /bin/sh +# +# copy-secrets system_name target +# set -euf -host=$1 +system_name=$1 +target=$2 -target=root@$host - -nixos_config=$config_root/modules/$host -secrets_nix=$secrets_root/$host/nix -secrets_rsync=$secrets_root/$host/rsync +nixos_config=$config_root/modules/$system_name +secrets_nix=$secrets_root/$system_name/nix +secrets_rsync=$secrets_root/$system_name/rsync if ! test -e "$secrets_rsync"; then exit # nothing to do fi -retiolum_secret=$(nixos-query $host services.retiolum.privateKeyFile) -retiolum_uid=$(nixos-query $host users.extraUsers.retiolum-tinc.uid) +retiolum_secret=$(nixos-query $system_name services.retiolum.privateKeyFile) +retiolum_uid=$(nixos-query $system_name users.extraUsers.retiolum-tinc.uid) ejabberd_secret=/etc/ejabberd/ejabberd.pem -ejabberd_uid=$(nixos-query $host users.extraUsers.ejabberd.uid) +ejabberd_uid=$(nixos-query $system_name users.extraUsers.ejabberd.uid) rsync -cz --chown=0:0 -vr "$secrets_rsync/" "$target:/" |