]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blob - modules/profile/manifests/boinc.pp
Add boinc to use spare CPUs
[perso/Immae/Projets/Puppet.git] / modules / profile / manifests / boinc.pp
1 class profile::boinc (
2 Optional[String] $rpc_password = undef,
3 Optional[String] $rpc_host = undef,
4 ) {
5 unless empty($rpc_host) or empty($rpc_password) {
6 ensure_packages(["boinc-nox"])
7
8 file { "/var/lib/boinc/gui_rpc_auth.cfg":
9 ensure => present,
10 content => $rpc_password,
11 owner => "boinc",
12 group => "boinc",
13 mode => "0600",
14 require => Package["boinc-nox"]
15 }
16 ->
17 file { "/var/lib/boinc/remote_hosts.cfg":
18 ensure => present,
19 content => $rpc_host,
20 owner => "boinc",
21 group => "boinc",
22 mode => "0600",
23 }
24 ->
25 service { "boinc":
26 enable => true,
27 ensure => "running",
28 }
29 }
30 }