aports/main/openrc/hostname.initd
Natanael Copa 325abf676b main/openrc: Add license statement for init.d
Use same license as mentioned in APKBUILD
Requested on IRC.
2023-04-17 13:14:03 +02:00

21 lines
351 B
Bash

#!/sbin/openrc-run
# Copyright (c) Natanael Copa
# This code is licensed under BSD-2-Clause
description="Sets the hostname of the machine."
depend() {
keyword -prefix -lxc -docker
}
start() {
if [ -s /etc/hostname ] ; then
opts="-F /etc/hostname"
else
opts="${hostname:-localhost}"
fi
ebegin "Setting hostname"
hostname $opts
eend $?
}