X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=scripts%2Flive-bottom%2F06hostname;h=ba71fcee39a0850473b2b2a4822190db32819c5c;hb=116f7ddd2e6ebb1377474da592b7d43604e7b166;hp=29a080fa2590bf573b7b2af378b4dd1731d16dd9;hpb=5f0f3b0c36d433a462176f970d371c77c3020749;p=live-boot-grml.git diff --git a/scripts/live-bottom/06hostname b/scripts/live-bottom/06hostname index 29a080f..ba71fce 100755 --- a/scripts/live-bottom/06hostname +++ b/scripts/live-bottom/06hostname @@ -31,9 +31,19 @@ log_begin_msg "Setting hostname" # live-initramfs script -echo "${HOSTNAME}" > /root/etc/hostname +# Change hostname only if it is not set +if [ ! -f /root/etc/hostname ] || grep -qs localhost\.localdomain /root/etc/hostname +then + echo "${HOSTNAME}" > /root/etc/hostname +else + HOSTNAME="$(cat /root/etc/hostname)" + really_export HOSTNAME +fi -cat >> /root/etc/hosts << EOF +# Create /etc/hosts only if it is not present or empty +if [ ! -f /root/etc/hosts ] || [ "$(/root/usr/bin/stat -c %s root/etc/hosts)" == "0" ] +then + cat > /root/etc/hosts << EOF 127.0.0.1 localhost 127.0.1.1 ${HOSTNAME} @@ -45,6 +55,7 @@ ff02::1 ip6-allnodes ff02::2 ip6-allrouters ff02::3 ip6-allhosts EOF +fi hostname "${HOSTNAME}"