aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/create-hostsfile.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap/create-hostsfile.sh')
-rwxr-xr-xbootstrap/create-hostsfile.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/bootstrap/create-hostsfile.sh b/bootstrap/create-hostsfile.sh
deleted file mode 100755
index 2aaf9cb..0000000
--- a/bootstrap/create-hostsfile.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-set -e
-
-source include/tgmanage.cfg.sh
-if [ -z ${PRIMARY} ]
-then
- echo "Not configured!";
- exit 1;
-fi;
-
-echo >> /etc/hosts
-echo "# Bootstrap hosts entries for ${TGNAME} ">> /etc/hosts
-echo "${PRI_V6} ${PRIMARY}" >> /etc/hosts
-echo "${PRI_V4} ${PRIMARY}" >> /etc/hosts
-echo "${SEC_V6} ${SECONDARY}" >> /etc/hosts
-echo "${SEC_V4} ${SECONDARY}" >> /etc/hosts