mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
12 lines
184 B
Plaintext
12 lines
184 B
Plaintext
|
#!/sbin/openrc-run
|
||
|
command="/usr/bin/salt-minion"
|
||
|
command_args="--daemon"
|
||
|
pidfile="/var/run/salt-minion.pid"
|
||
|
name="Salt Minion"
|
||
|
|
||
|
depend() {
|
||
|
need localmount
|
||
|
use net
|
||
|
after bootmisc
|
||
|
}
|