mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 18:53:13 +01:00
12 lines
162 B
Bash
Executable File
12 lines
162 B
Bash
Executable File
#
|
|
# 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
|
|
|