summaryrefslogtreecommitdiff
path: root/nonprism/hostname-blanker/hostname-blanker.sh
diff options
context:
space:
mode:
Diffstat (limited to 'nonprism/hostname-blanker/hostname-blanker.sh')
-rw-r--r--nonprism/hostname-blanker/hostname-blanker.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/nonprism/hostname-blanker/hostname-blanker.sh b/nonprism/hostname-blanker/hostname-blanker.sh
new file mode 100644
index 000000000..ecdcfd4b4
--- /dev/null
+++ b/nonprism/hostname-blanker/hostname-blanker.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+# This script wipes hostname so that DHCP can't send it over the network
+#hostnamectl set-hostname localhost
+echo "localhost" > /etc/hostname
+wait
+sed -i '/127.0.0.1/c\127.0.0.1 localhost.localdomain localhost 'localhost'' /etc/hosts ##properly sets our new host in /etc/hosts file
+wait
+sysctl kernel.hostname=localhost
+wait
+hostname localhost ##avoids need to reboot before showing our new hostname in terminals etc.
+wait