X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fdebian-org%2Fmanifests%2Finit.pp;h=efe91dbca428e5c5cbf2bea6eedc31054092ba51;hb=f5332ef84deb1a27990c625d2eb0901746cf3499;hp=3d2fd217cbeb9b7c06953e482ab9439299c7a5c9;hpb=2c8889fb72d9bfcc3cff5de485c927d64e7f78ed;p=mirror%2Fdsa-puppet.git diff --git a/modules/debian-org/manifests/init.pp b/modules/debian-org/manifests/init.pp index 3d2fd217c..efe91dbca 100644 --- a/modules/debian-org/manifests/init.pp +++ b/modules/debian-org/manifests/init.pp @@ -20,11 +20,9 @@ class debian-org { 'dsa-munin-plugins', ]: ensure => installed, - require => [ - File['/etc/apt/sources.list.d/db.debian.org.list'], - Exec['apt-get update'] - ] + tag => extra_repo, } + package { [ 'apt-utils', 'bash-completion', @@ -39,6 +37,12 @@ class debian-org { ensure => installed, } + if $::lsbmajdistrelease >= 7 { + package { 'libfilesystem-ruby1.9.1': + ensure => installed, + } + } + munin::check { [ 'cpu', 'entropy', @@ -62,14 +66,10 @@ class debian-org { if getfromhash($site::nodeinfo, 'broken-rtc') { package { 'fake-hwclock': ensure => installed, - require => [ - File['/etc/apt/sources.list.d/db.debian.org.list'], - Exec['apt-get update'] - ] + tag => extra_repo, } } - package { 'molly-guard': ensure => installed, } @@ -84,25 +84,31 @@ class debian-org { require => Package['molly-guard'], } - # This really means 'not wheezy' - - if $::debarchitecture != 'armhf' { - site::aptrepo { 'security': - url => 'http://security.debian.org/', - suite => "${::lsbdistcodename}/updates", - components => ['main','contrib','non-free'] - } + site::aptrepo { 'security': + url => 'http://security.debian.org/', + suite => "${::lsbdistcodename}/updates", + components => ['main','contrib','non-free'] + } + if $::lsbdistcodename != 'wheezy' { site::aptrepo { 'backports.debian.org': url => 'http://backports.debian.org/debian-backports/', suite => "${::lsbdistcodename}-backports", components => ['main','contrib','non-free'] } - site::aptrepo { 'volatile': - url => 'http://ftp.debian.org/debian', - suite => "${::lsbdistcodename}-updates", - components => ['main','contrib','non-free'] + if getfromhash($site::nodeinfo, 'hoster', 'mirror-debian') { + site::aptrepo { 'volatile': + url => getfromhash($site::nodeinfo, 'hoster', 'mirror-debian'), + suite => "${::lsbdistcodename}-updates", + components => ['main','contrib','non-free'] + } + } else { + site::aptrepo { 'volatile': + url => 'http://ftp.debian.org/debian', + suite => "${::lsbdistcodename}-updates", + components => ['main','contrib','non-free'] + } } } site::aptrepo { 'backports.org': @@ -122,6 +128,14 @@ class debian-org { key => 'puppet:///modules/debian-org/db.debian.org.asc', } + if getfromhash($site::nodeinfo, 'hoster', 'mirror-debian') { + site::aptrepo { 'debian': + url => getfromhash($site::nodeinfo, 'hoster', 'mirror-debian'), + suite => $::lsbdistcodename, + components => ['main','contrib','non-free'] + } + } + file { '/etc/facter': ensure => directory, purge => true, @@ -155,8 +169,12 @@ class debian-org { source => 'puppet:///modules/debian-org/timezone', notify => Exec['dpkg-reconfigure tzdata -pcritical -fnoninteractive'], } + if $::hostname == handel { + include puppetmaster::db + $dbpassword = $puppetmaster::db::password + } file { '/etc/puppet/puppet.conf': - source => 'puppet:///modules/debian-org/puppet.conf', + content => template('debian-org/puppet.conf.erb'), } file { '/etc/default/puppet': source => 'puppet:///modules/debian-org/puppet.default', @@ -213,6 +231,7 @@ class debian-org { path => '/usr/bin:/usr/sbin:/bin:/sbin', refreshonly => true, } + Exec['apt-get update']->Package<| tag == extra_repo |> exec { 'dpkg-reconfigure tzdata -pcritical -fnoninteractive': path => '/usr/bin:/usr/sbin:/bin:/sbin',