forked from ungleich-public/cdist
Implement "__start_on_boot --state absent" for OpenBSD
This commit is contained in:
parent
689f37acf6
commit
15ab7c0810
1 changed files with 6 additions and 1 deletions
|
@ -82,7 +82,7 @@ case "$state_should" in
|
|||
;;
|
||||
|
||||
openbsd)
|
||||
# OpenBSD 5.7 and phigher
|
||||
# OpenBSD 5.7 and higher
|
||||
echo "rcctl enable '$name'"
|
||||
;;
|
||||
|
||||
|
@ -116,6 +116,11 @@ case "$state_should" in
|
|||
|
||||
openwrt)
|
||||
echo "'/etc/init.d/$name' disable"
|
||||
;;
|
||||
|
||||
openbsd)
|
||||
# OpenBSD 5.7 and higher
|
||||
echo "rcctl disable '$name'"
|
||||
;;
|
||||
|
||||
*)
|
||||
|
|
Loading…
Reference in a new issue