aboutsummaryrefslogtreecommitdiff
path: root/etc/guix-daemon.conf.in
blob: fb681d1f8023cc54c03b39c78a14f362794da544 (about) (plain)
1
2
3
4
5
6
7
8
9
10
# This is a "job" for the Upstart init system to launch 'guix-daemon'.
# Drop it in /etc/init to have 'guix-daemon' automatically started.

description "Build daemon for GNU Guix"

start on runlevel [2345]

stop on runlevel [016]

exec @localstatedir@/guix/profiles/per-user/root/current-guix/bin/guix-daemon --build-users-group=guixbuild --discover=no
Nieuwenhuizen * gnu/build/linux-boot.scm (make-hurd-device-nodes): Avoid de-duplication of device mount points; also create mount points for /servers/. 2020-05-20linux-boot: Refactor boot-system.Maxim Cournoyer The --root option can now be omitted, and inferred from the root file system declaration instead. * gnu/build/file-systems.scm (canonicalize-device-spec): Extend to support NFS directly, and... * gnu/build/linux-boot.scm (boot-system): ...remove NFS special casing from here. Remove nested definitions for root-fs-type, root-fs-flags and root-fs-options, and bind those inside the let* instead. Make "--root" take precedence over the device field string representation of the root file system. * doc/guix.texi (Initial RAM Disk): Document that "--root" can be left unspecified. 2020-05-02Merge branch 'master' into core-updatesMarius Bakke 2020-05-02linux-boot: Allow the root file system to be mounted via NFS.Stefan * gnu/build/linux-boot.scm (boot-system) Treat a root option with ":/" as an nfs source and avoid to call 'canonicalize-device-spec' for it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> 2020-04-11linux-boot: Add 'make-hurd-device-nodes'.Ludovic Courtès * gnu/build/linux-boot.scm (make-hurd-device-nodes): New procedure. 2020-04-11linux-boot: 'make-essential-device-nodes' root parameter is optional.Ludovic Courtès * gnu/build/linux-boot.scm (make-essential-device-nodes): Change 'root' to an optional parameter. * gnu/build/vm.scm (root-partition-initializer): Adjust accordingly. 2020-03-02linux-boot: Ensure volatile root is mounted read-only.Maxim Cournoyer * gnu/build/linux-boot.scm (mount-root-file-system): Ensure MS_RDONLY is present among the root file system flags when VOLATILE-ROOT? is #t. 2019-12-12linux-boot: Don't ignore flags when mounting root file system.Guillaume Le Vaillant * gnu/build/linux-boot.scm (mount-root-file-system): Add the 'flags' keyword argument and use it when mounting the root file system. (boot-system): Pass the root file system flags to 'mount-root-file-system'. Signed-off-by: Ludovic Courtès <ludo@gnu.org> 2019-11-18linux-boot: Don't ignore options when mounting root file system.Guillaume Le Vaillant Fixes <https://bugs.gnu.org/37977>. * gnu/build/linux-boot.scm (mount-root-file-system): Add the 'options' keyword argument and use it when mounting the root file system. (boot-system): Pass the root file system options to 'mount-root-file-system'. Signed-off-by: Ludovic Courtès <ludo@gnu.org> 2019-11-18linux-boot: Fix indentation.Maxim Cournoyer * gnu/build/linux-boot.scm (boot-system): Re-indent. 2019-09-25linux-boot: Fix typo.Maxim Cournoyer * gnu/build/linux-boot.scm (mount-root-file-system): Fix typo.