summaryrefslogtreecommitdiff
path: root/build-aux/hydra
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-07-12 23:14:10 +0200
committerLudovic Courtès <ludo@gnu.org>2014-07-12 23:17:54 +0200
commit927097effdab473d2a344e6de75a85ec734df5dc (patch)
treee723e5c38bac526c859fddc6420724f1ba6ef0aa /build-aux/hydra
parent8897603ad02042f916911c406eb47f0b36d1f831 (diff)
downloadgnu-guix-927097effdab473d2a344e6de75a85ec734df5dc.tar
gnu-guix-927097effdab473d2a344e6de75a85ec734df5dc.tar.gz
services: Add Tor service.
* gnu/services/networking.scm (tor-service): New procedure. * doc/guix.texi (Networking Services): Document it. * build-aux/hydra/demo-os.scm: Use it. Add TOR and TORSOCKS to 'packages'.
Diffstat (limited to 'build-aux/hydra')
-rw-r--r--build-aux/hydra/demo-os.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/build-aux/hydra/demo-os.scm b/build-aux/hydra/demo-os.scm
index 43baa391e3..89b67aabe3 100644
--- a/build-aux/hydra/demo-os.scm
+++ b/build-aux/hydra/demo-os.scm
@@ -27,6 +27,7 @@
(gnu packages xorg)
(gnu packages avahi)
(gnu packages linux)
+ (gnu packages tor)
(gnu services networking)
(gnu services avahi)
@@ -79,10 +80,13 @@ You can log in as 'guest' or 'root' with no password.
(avahi-service)
(dbus-service (list avahi))
+ (tor-service)
%base-services))
(pam-services
;; Explicitly allow for empty passwords.
(base-pam-services #:allow-empty-passwords? #t))
- (packages (cons* strace xterm avahi %base-packages)))
+ (packages (cons* strace
+ tor torsocks
+ xterm avahi %base-packages)))