From ac764394050f6fc39e406799085259d3fc08956a Mon Sep 17 00:00:00 2001 From: tv Date: Thu, 21 May 2015 22:33:16 +0200 Subject: next: initial commit --- next/bin/copy-secrets | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 next/bin/copy-secrets (limited to 'next/bin/copy-secrets') diff --git a/next/bin/copy-secrets b/next/bin/copy-secrets new file mode 100755 index 00000000..7398d4fb --- /dev/null +++ b/next/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=$(query $host services.retiolum.privateKeyFile) +retiolum_uid=$(query $host users.extraUsers.retiolum-tinc.uid) + +ejabberd_secret=/etc/ejabberd/ejabberd.pem +ejabberd_uid=$(query $host users.extraUsers.ejabberd.uid) + +rsync -cz --chown=0:0 -vr "$secrets_rsync/" "$target:/" + +ssh "$target" -T <