aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/init-sshkeys.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap/init-sshkeys.sh')
-rwxr-xr-xbootstrap/init-sshkeys.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/bootstrap/init-sshkeys.sh b/bootstrap/init-sshkeys.sh
deleted file mode 100755
index 9427bad..0000000
--- a/bootstrap/init-sshkeys.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-set -e
-
-source include/tgmanage.cfg.sh
-if [ -z ${PRIMARY} ]
-then
- echo "Not configured!";
- exit 1;
-fi;
-
-ssh-keygen -P '' -f ~/.ssh/id_rsa -b 2048
-ssh-copy-id root@${PRIMARY}
-ssh-copy-id root@${SECONDARY}