From bb46e52bb239f9b0962ff441d5a8f037b1ef1eaf Mon Sep 17 00:00:00 2001 From: tv Date: Thu, 21 May 2015 23:52:06 +0200 Subject: deploy: merge next --- bin/copy-secrets | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 bin/copy-secrets (limited to 'bin/copy-secrets') diff --git a/bin/copy-secrets b/bin/copy-secrets new file mode 100755 index 0000000..36854ea --- /dev/null +++ b/bin/copy-secrets @@ -0,0 +1,28 @@ +#! /bin/sh +set -euf + +host=$1 + +target=root@$host + +nixos_config=$config_root/modules/$host +secrets_nix=$secrets_root/$host/nix +secrets_rsync=$secrets_root/$host/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) + +ejabberd_secret=/etc/ejabberd/ejabberd.pem +ejabberd_uid=$(nixos-query $host users.extraUsers.ejabberd.uid) + +rsync -cz --chown=0:0 -vr "$secrets_rsync/" "$target:/" + +ssh "$target" -T <