summaryrefslogtreecommitdiff
path: root/gnu/system
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-11-10 23:23:32 +0100
committerLudovic Courtès <ludo@gnu.org>2014-11-10 23:23:32 +0100
commitfdaacbad85a23f89db9431477684fb1333de03f3 (patch)
tree6817ad6bfc18cde17837f14bd1d29980589e4519 /gnu/system
parent03920078d5073a9b0674b01f3e4d1f5b082a5195 (diff)
downloadpatches-fdaacbad85a23f89db9431477684fb1333de03f3.tar
patches-fdaacbad85a23f89db9431477684fb1333de03f3.tar.gz
services: Add 'auto-start?' field to <service>.
* gnu/services.scm (<service>)[auto-start?]: New field. * gnu/services/dmd.scm (dmd-configuration-file): Honor it. * gnu/system/install.scm (cow-store-service): Add 'auto-start?' field.
Diffstat (limited to 'gnu/system')
-rw-r--r--gnu/system/install.scm4
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/system/install.scm b/gnu/system/install.scm
index 6b3aa6cbf2..961361b937 100644
--- a/gnu/system/install.scm
+++ b/gnu/system/install.scm
@@ -102,6 +102,10 @@ the user's target storage device rather than on the RAM disk."
(documentation
"Make the store copy-on-write, with writes going to \
the given target.")
+
+ ;; This is meant to be explicitly started by the user.
+ (auto-start? #f)
+
(start #~(case-lambda
((target)
#$(make-cow-store #~target)