diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-07-07 23:58:02 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-07-08 00:12:31 +0200 |
commit | 1c6b445b40dd693e9c2741942156258a89ebdb8b (patch) | |
tree | 46fa35abb87311511416389e8eee74109dffef11 /gnu/services/dbus.scm | |
parent | b3342b545a0147e2b501a94179cea6257fbe5213 (diff) | |
download | guix-1c6b445b40dd693e9c2741942156258a89ebdb8b.tar guix-1c6b445b40dd693e9c2741942156258a89ebdb8b.tar.gz |
services: Update to use the dmd 0.2 API.
* gnu/services/avahi.scm (avahi-service)[start]: Wrap command in a
list.
* gnu/services/dbus.scm (dbus-service)[start]: Likewise.
* gnu/services/ssh.scm (lsh-service): Likewise.
* gnu/services/base.scm (mingetty-service)[start]: Likewise.
(nscd-service)[start]: Likewise.
(syslog-service)[start]: Likewise.
(guix-service)[start]: Likewise.
(udev-service)[start]: Use 'exec-command' instead of 'execl'.
* gnu/services/xorg.scm (slim-service)[start]: Likewise, and use
#:environment-variables.
Diffstat (limited to 'gnu/services/dbus.scm')
-rw-r--r-- | gnu/services/dbus.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/services/dbus.scm b/gnu/services/dbus.scm index 2f67e26a1e..6076317ee5 100644 --- a/gnu/services/dbus.scm +++ b/gnu/services/dbus.scm @@ -81,9 +81,9 @@ and policy files. For example, to allow avahi-daemon to use the system bus, (provision '(dbus-system)) (requirement '(user-processes)) (start #~(make-forkexec-constructor - (string-append #$dbus "/bin/dbus-daemon") - "--nofork" - (string-append "--config-file=" #$conf "/system.conf"))) + (list (string-append #$dbus "/bin/dbus-daemon") + "--nofork" + (string-append "--config-file=" #$conf "/system.conf")))) (stop #~(make-kill-destructor)) (user-groups (list (user-group (name "messagebus")))) |