diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-10-12 23:06:07 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-10-13 00:06:11 +0200 |
commit | c80f1559eb076e96107178e19a904c21b7cde51a (patch) | |
tree | 987174337aacc5cfccdbf04674352edf76a9897b /build-aux | |
parent | cc9c1f39350233bb3f22f01f942466a5cc7851f0 (diff) | |
download | patches-c80f1559eb076e96107178e19a904c21b7cde51a.tar patches-c80f1559eb076e96107178e19a904c21b7cde51a.tar.gz |
hydra: Update demo OS to new service interface.
* build-aux/hydra/demo-os.scm: Import (gnu services dbus); remove
arguments to 'dbus-service'.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/hydra/demo-os.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/hydra/demo-os.scm b/build-aux/hydra/demo-os.scm index ce46caa580..c6e05ef8e2 100644 --- a/build-aux/hydra/demo-os.scm +++ b/build-aux/hydra/demo-os.scm @@ -23,7 +23,7 @@ ;;; (use-modules (gnu)) -(use-service-modules desktop xorg networking avahi) +(use-service-modules desktop xorg networking avahi dbus) (use-package-modules linux xorg tor avahi) (operating-system @@ -71,7 +71,7 @@ You can log in as 'guest' or 'root' with no password. #:gateway "10.0.2.2") (avahi-service) - (dbus-service (list avahi)) + (dbus-service) (tor-service) %base-services)) |