[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: hydra: Update demo OS to new service interface.
From: |
Ludovic Courtès |
Subject: |
02/03: hydra: Update demo OS to new service interface. |
Date: |
Mon, 12 Oct 2015 22:06:45 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit c80f1559eb076e96107178e19a904c21b7cde51a
Author: Ludovic Courtès <address@hidden>
Date: Mon Oct 12 23:06:07 2015 +0200
hydra: Update demo OS to new service interface.
* build-aux/hydra/demo-os.scm: Import (gnu services dbus); remove
arguments to 'dbus-service'.
---
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 ce46caa..c6e05ef 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))