X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fdebian-org%2Fmanifests%2Finit.pp;h=dc9d2722f1e802cc3c68e74bc3e95a52dea19b66;hb=ac80ccf735b0db5fe94f45b41148c5ec918c08d9;hp=de8091bbc6297dd27bb736bb46f3daf534b8a241;hpb=3c2f2bbb9096b574da842b3c598b87bf9a8a3456;p=mirror%2Fdsa-puppet.git diff --git a/modules/debian-org/manifests/init.pp b/modules/debian-org/manifests/init.pp index de8091bbc..dc9d2722f 100644 --- a/modules/debian-org/manifests/init.pp +++ b/modules/debian-org/manifests/init.pp @@ -6,7 +6,7 @@ class debian-org { if getfromhash($site::nodeinfo, 'hoster', 'mirror-debian') { $mirror = getfromhash($site::nodeinfo, 'hoster', 'mirror-debian') } else { - $mirror = 'http://http.debian.net/debian/' + $mirror = 'http://ftp.debian.org/debian/' } if $::lsbmajdistrelease < 7 { $mirror_backports = 'http://backports.debian.org/debian-backports/' @@ -14,6 +14,13 @@ class debian-org { $mirror_backports = $mirror } + if $systemd { + include systemd + $servicefiles = 'present' + } else { + $servicefiles = 'absent' + } + $debianadmin = [ 'debian-archive-debian-samhain-reports@master.debian.org', 'debian-admin@ftbfs.de', @@ -60,10 +67,14 @@ class debian-org { ensure => installed, } - if $::lsbmajdistrelease >= 7 { + if $::lsbmajdistrelease == 7 { package { 'libfilesystem-ruby1.9.1': ensure => installed, } + } elsif $::lsbmajdistrelease >= 8 { + package { 'ruby-filesystem': + ensure => installed, + } } munin::check { [ @@ -232,8 +243,34 @@ class debian-org { file { '/etc/default/puppet': source => 'puppet:///modules/debian-org/puppet.default', } + file { '/etc/systemd': + ensure => directory, + mode => 0755, + } + file { '/etc/systemd/system': + ensure => directory, + mode => 0755, + } + file { '/etc/systemd/system/ud-replicated.service': + ensure => $servicefiles, + source => 'puppet:///modules/debian-org/ud-replicated.service', + notify => Exec['systemctl daemon-reload'], + } + if $systemd { + file { '/etc/systemd/system/multi-user.target.wants/ud-replicated.service': + ensure => 'link', + target => '../ud-replicated.service', + notify => Exec['systemctl daemon-reload'], + } + } + file { '/etc/systemd/system/puppet.service': + ensure => 'link', + target => '/dev/null', + notify => Exec['systemctl daemon-reload'], + } + file { '/etc/cron.d/dsa-puppet-stuff': - source => 'puppet:///modules/debian-org/dsa-puppet-stuff.cron', + content => template('debian-org/dsa-puppet-stuff.cron.erb'), require => Package['debian.org'], } file { '/etc/ldap/ldap.conf': @@ -250,7 +287,7 @@ class debian-org { } file { '/etc/rc.local': mode => '0755', - source => 'puppet:///modules/debian-org/rc.local', + content => template('debian-org/rc.local.erb'), notify => Exec['service rc.local start'], } file { '/etc/dsa': @@ -315,6 +352,11 @@ class debian-org { refreshonly => true } + exec { 'systemctl daemon-reload': + refreshonly => true, + onlyif => "test -x /bin/systemctl" + } + tidy { '/var/lib/puppet/clientbucket/': age => '2w', recurse => 9,