From 9b0e51461d8170aaa5147fca33647371e8a8eb12 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 17 May 2018 21:15:46 +0300 Subject: services: connman: Add default configuration to the connman-service-type. * gnu/services/networking.scm (connman-service-type)[default-value]: New field. --- gnu/services/networking.scm | 1 + 1 file changed, 1 insertion(+) (limited to 'gnu/services/networking.scm') diff --git a/gnu/services/networking.scm b/gnu/services/networking.scm index 0c9c69eef5..6e71ccf8fe 100644 --- a/gnu/services/networking.scm +++ b/gnu/services/networking.scm @@ -959,6 +959,7 @@ wireless networking.")))) ;; Add connman to the system profile. (service-extension profile-service-type connman-package))) + (default-value (connman-configuration)) (description "Run @url{https://01.org/connman,Connman}, a network connection manager.")))) -- cgit v1.2.3 From 19f20f4ffe88eb0ea3b0c88d1cf3ec43cda926c5 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Fri, 18 May 2018 18:25:07 +0300 Subject: services: openntpd: Add openntpd to the system profile. * gnu/services/networking.scm (openntpd-service-type): Extend the profile-service-type and add openntpd to the system profile. --- gnu/services/networking.scm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gnu/services/networking.scm') diff --git a/gnu/services/networking.scm b/gnu/services/networking.scm index 6e71ccf8fe..a24342f237 100644 --- a/gnu/services/networking.scm +++ b/gnu/services/networking.scm @@ -464,6 +464,8 @@ make an initial adjustment of more than 1,000 seconds." openntpd-shepherd-service) (service-extension account-service-type (const %ntp-accounts)) + (service-extension profile-service-type + (compose list openntpd-configuration-openntpd)) (service-extension activation-service-type openntpd-service-activation))) (default-value (openntpd-configuration)) -- cgit v1.2.3 From d8ac79870132a00529825a09d73ad5cb7d2347bd Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Fri, 18 May 2018 18:26:03 +0300 Subject: services: connman: Add polkit hooks for connman. * gnu/services/networking.scm (connman-service-type): Extend the polkit-service-type with actions from connman. --- gnu/services/networking.scm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gnu/services/networking.scm') diff --git a/gnu/services/networking.scm b/gnu/services/networking.scm index a24342f237..e4441f6475 100644 --- a/gnu/services/networking.scm +++ b/gnu/services/networking.scm @@ -954,6 +954,8 @@ wireless networking.")))) (extensions (list (service-extension shepherd-root-service-type connman-shepherd-service) + (service-extension polkit-service-type + connman-package) (service-extension dbus-root-service-type connman-package) (service-extension activation-service-type -- cgit v1.2.3