From 8dccac94ef19a538ecd4de3ddb71f613d453f7e1 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Sat, 31 Dec 2016 00:17:49 +0100 Subject: [PATCH] grml-hostname: no longer rely on /etc/init.d/hostname.sh /etc/init.d/hostname.sh was shipped with the initscripts, but it doesn't necessarily exist anymore nowadays. So instead directly invoke `hostname` as the init script does as well. --- usr_sbin/grml-hostname | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr_sbin/grml-hostname b/usr_sbin/grml-hostname index b7a6eab..ade8631 100755 --- a/usr_sbin/grml-hostname +++ b/usr_sbin/grml-hostname @@ -75,7 +75,7 @@ Configuration of myhostname in /etc/postfix/main.cf has been adjusted as well. D /etc/init.d/avahi-daemon restart fi - /etc/init.d/hostname.sh + hostname "$NEW_HOSTNAME" if [ -z "$NONINTERACTIVE" ] ; then dialog --stdout --title "${PN}" --msgbox "Setting hostname to $NEW_HOSTNAME was successful.$POSTFIX" 0 0 -- 2.1.4