diff options
| author | lassulus <lass@aidsballs.de> | 2015-06-14 20:57:19 +0200 | 
|---|---|---|
| committer | lassulus <lass@aidsballs.de> | 2015-06-14 20:57:19 +0200 | 
| commit | cb70769a04166a7c7a0d8e92a23f9ae76f768259 (patch) | |
| tree | 27572e3f2fa4f7e715c64c36619b7a96a223078e /bin/copy-secrets | |
| parent | e59d4f45c04431605a2c2f2988d3127e8982fda7 (diff) | |
deploy: take target as optional argument
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:/" | 
