mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-10 12:30:16 +00:00
17 lines
371 B
Plaintext
Executable File
17 lines
371 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
description="Configuring settings from database."
|
|
|
|
depend() {
|
|
before hostname sysctl
|
|
}
|
|
|
|
start() {
|
|
ebegin "Configuring host settings from database"
|
|
|
|
mobyconfig exists etc/hostname && echo $(mobyconfig get etc/hostname) > /etc/hostname
|
|
mobyconfig exists etc/sysctl.conf && echo $(mobyconfig get etc/sysctl.conf) > /etc/sysctl.conf
|
|
|
|
eend 0
|
|
}
|