Files
linuxkit/alpine/packages/hostsettings/etc/init.d/hostsettings
2016-05-04 13:02:26 +01:00

16 lines
267 B
Plaintext
Executable File

#!/sbin/openrc-run
description="Configuring settings from database."
depend() {
before sysctl
}
start() {
ebegin "Configuring host settings from database"
mobyconfig exists etc/sysctl.conf && mobyconfig get etc/sysctl.conf > /etc/sysctl.conf
eend 0
}