summaryrefslogtreecommitdiff
path: root/nonprism/hostname-blanker/hostname-blanker.sh
diff options
context:
space:
mode:
authorGaming4JC <g4jc@openmailbox.org>2017-01-07 17:15:56 -0500
committerGaming4JC <g4jc@openmailbox.org>2017-01-07 17:15:56 -0500
commitf11691c637f27c032f2136abada397fc11253946 (patch)
tree1da24f210d7acec05156634d5fe1ed23750f6e7b /nonprism/hostname-blanker/hostname-blanker.sh
parentc24bdf38fe89d74cfad9cc41a03de18a94159b28 (diff)
downloadabslibre-f11691c637f27c032f2136abada397fc11253946.tar.gz
abslibre-f11691c637f27c032f2136abada397fc11253946.tar.bz2
abslibre-f11691c637f27c032f2136abada397fc11253946.zip
add hostname-blanker
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