diff options
Diffstat (limited to 'packages/initscripts/files/hostname.sh')
-rw-r--r-- | packages/initscripts/files/hostname.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/initscripts/files/hostname.sh b/packages/initscripts/files/hostname.sh new file mode 100644 index 0000000000..0f3d374286 --- /dev/null +++ b/packages/initscripts/files/hostname.sh @@ -0,0 +1,11 @@ +# +# hostname.sh Set hostname. +# +# Version: @(#)hostname.sh 1.10 26-Feb-2001 miquels@cistron.nl +# + +if test -f /etc/hostname +then + hostname -F /etc/hostname +fi + |