diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-11-10 23:23:32 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-10 23:23:32 +0100 |
commit | fdaacbad85a23f89db9431477684fb1333de03f3 (patch) | |
tree | 6817ad6bfc18cde17837f14bd1d29980589e4519 /gnu/system/install.scm | |
parent | 03920078d5073a9b0674b01f3e4d1f5b082a5195 (diff) | |
download | guix-fdaacbad85a23f89db9431477684fb1333de03f3.tar guix-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/install.scm')
-rw-r--r-- | gnu/system/install.scm | 4 |
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) |