aboutsummaryrefslogtreecommitdiff
path: root/init.d.BSD/rc-enabled
diff options
context:
space:
mode:
Diffstat (limited to 'init.d.BSD/rc-enabled')
-rw-r--r--init.d.BSD/rc-enabled5
1 files changed, 1 insertions, 4 deletions
diff --git a/init.d.BSD/rc-enabled b/init.d.BSD/rc-enabled
index a43680cc..466146cb 100644
--- a/init.d.BSD/rc-enabled
+++ b/init.d.BSD/rc-enabled
@@ -47,10 +47,7 @@ start() {
# Ensure that the users rc.conf will start us - ignore the defaults
eval enabled=\$$(basename "${svc}")_enable
- case "$enabled" in
- [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1) ;;
- *) continue ;;
- esac
+ yesno ${enabled} || continue
# Good to go!
"$svc" start && started="${started} ${svc}"