[__hostname] Improve systemd hostname setting

This means we write to /etc/hostname before running hostnamectl, so that
it can overwrite the file if it wants to.
This commit is contained in:
Dennis Camera 2019-10-12 18:49:31 +02:00
parent 30c7d153e8
commit cee553a6dd
1 changed files with 14 additions and 8 deletions

View File

@ -61,23 +61,29 @@ echo 'changed' >> "$__messages_out"
# First try to set the hostname using hostnamectl, if available.
if [ "$has_hostnamectl" ]; then
# Allow hostnamectl to fail silently.
# Who the fuck invented a tool that needs dbus to set the hostname anyway ...
# Who the fuck invented a tool that needs dbus to set the hostname anyway
cat <<EOF
if hostnamectl set-hostname '$name_should'; then
printf '%s\\n' '$name_should' > /etc/hostname
exit 0
fi
EOF
# NOTE: We write the static hostname to /etc/hostname first in case
# hostnamectl fails. Fallback-code below will then adjust the running
# hostname below.
echo "printf '%s\\n' '$name_should' > /etc/hostname"
echo "hostnamectl set-hostname '$name_should' && exit 0"
fi
# Use the good old way to set the hostname. Also if hostnamectl fails.
case $os
in
alpine|archlinux|coreos|debian|devuan|ubuntu)
alpine|archlinux|debian|devuan|ubuntu)
echo "printf '%s\\n' '$name_should' > /etc/hostname"
echo "hostname -F /etc/hostname"
;;
coreos|openbmc-phosphor)
# NOTE: systemd-only distros have the hostname already written above.
# But since hostamectl failed, we update the running hostname
# manually.
echo "hostname -F /etc/hostname"
;;
gentoo)
# NOTE: Writing the hostname to file is done in the manifest for OpenRC.
# For systemd hostnamectl should take care of that.