]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/commitdiff
Update boinc
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Wed, 11 Jul 2018 07:51:32 +0000 (09:51 +0200)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Wed, 11 Jul 2018 07:51:32 +0000 (09:51 +0200)
modules/profile/manifests/boinc.pp

index 79aa85f87107f91b4c79faeafd1c8bf281dc45d6..b8d77cf817d6da4bcc0cc11458335a1d2347460c 100644 (file)
@@ -3,7 +3,7 @@ class profile::boinc (
   Optional[String] $rpc_host     = undef,
 ) {
   unless empty($rpc_host) or empty($rpc_password) {
-    ensure_packages(["boinc-nox", "lib32-glibc", "lib32-glib2"])
+    ensure_packages(["boinc-nox", "lib32-glibc", "lib32-glib2"], { ensure => latest })
 
     file { "/var/lib/boinc/gui_rpc_auth.cfg":
       ensure  => present,
@@ -23,6 +23,10 @@ class profile::boinc (
     }
     ->
     service { "boinc":
+      enable => false,
+      ensure => "stopped",
+    } ->
+    service { "boinc-client":
       enable => true,
       ensure => "running",
     }