mirror of
https://github.com/zerotier/edge.git
synced 2026-05-22 16:25:05 -07:00
19 lines
256 B
Plaintext
Executable File
19 lines
256 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
description="Sets the hostname of the machine."
|
|
|
|
depend() {
|
|
keyword -prefix -lxc
|
|
}
|
|
|
|
start() {
|
|
if [ -s /etc/hostname ] ; then
|
|
opts="-F /etc/hostname"
|
|
else
|
|
opts="localhost"
|
|
fi
|
|
ebegin "Setting hostname"
|
|
hostname $opts
|
|
eend $?
|
|
}
|