summaryrefslogtreecommitdiffstats
path: root/next/bin/copy-secrets
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-05-21 23:52:06 +0200
committertv <tv@shackspace.de>2015-05-21 23:52:06 +0200
commitf8b1e849a6a3bd53f24a4aac70bc904cdb5ff711 (patch)
tree826235e1b776665ab32ee787bb96cd3b6f519d95 /next/bin/copy-secrets
parentac764394050f6fc39e406799085259d3fc08956a (diff)
deploy: merge next
Diffstat (limited to 'next/bin/copy-secrets')
-rwxr-xr-xnext/bin/copy-secrets28
1 files changed, 0 insertions, 28 deletions
diff --git a/next/bin/copy-secrets b/next/bin/copy-secrets
deleted file mode 100755
index 7398d4fb..00000000
--- a/next/bin/copy-secrets
+++ /dev/null
@@ -1,28 +0,0 @@
-#! /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 <<EOF
-set -euf
-! test -f $retiolum_secret || chown -v $retiolum_uid:0 $retiolum_secret
-! test -f $ejabberd_secret || chown -v $ejabberd_uid:0 $ejabberd_secret
-EOF