aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2012-10-07 14:54:44 +0200
committerTom Gundersen <teg@jklm.no>2012-10-07 14:54:44 +0200
commit2f33b947d7c2d48a98423cab24929100e56d94a6 (patch)
tree37d74f2a16361084e2ff72cf95e65e4e417538da
parent75854bbd5f7d2ef05c3dd8e4bd2bbcc614daec68 (diff)
downloadinitscripts-2f33b947d7c2d48a98423cab24929100e56d94a6.tar.xz
rc.conf: default to empty DAEMONS array
The user should pick what daemons to use, no need to provide default ones. In particular as this is also used by systemd, where the default units no longer make sense. Suggested-by: Thomas Bächler <thomas@archlinux.org> Signed-off-by: Tom Gundersen <teg@jklm.no>
-rw-r--r--rc.conf5
-rw-r--r--rc.conf.5.txt4
2 files changed, 7 insertions, 2 deletions
diff --git a/rc.conf b/rc.conf
index fc9ccdd..f056d74 100644
--- a/rc.conf
+++ b/rc.conf
@@ -7,7 +7,10 @@
# For more details on rc.conf see rc.conf(5).
#
-DAEMONS=(syslog-ng network crond)
+DAEMONS=()
+
+# a reasonable default DAEMONS array is:
+# DAEMONS=(syslog-ng network crond)
# Storage
#
diff --git a/rc.conf.5.txt b/rc.conf.5.txt
index 8983871..7ea563e 100644
--- a/rc.conf.5.txt
+++ b/rc.conf.5.txt
@@ -35,7 +35,9 @@ make a difference if the hwclock program has been calibrated correctly.
If you use a network filesystem, you should enable 'netfs'.
- DAEMONS=('syslog-ng' 'network' 'crond')
+You might also want to enable 'syslog-ng', 'network' and 'crond'.
+
+ DAEMONS=()
STORAGE[[S]]
------------