X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=modules%2Fdebian-org%2Fmanifests%2Finit.pp;h=86cea1bb468f8d66f4d1a8f3b834bc6acd653a0f;hb=876366617c666a3fe003737c85be99e4ac246abf;hp=04db264f5a5528a0fe26d7bc39b9a2ec64077d03;hpb=dbc05fea3a598046994dbc58fc66402a25b1aaba;p=dsa-puppet.git diff --git a/modules/debian-org/manifests/init.pp b/modules/debian-org/manifests/init.pp index 04db264f..86cea1bb 100644 --- a/modules/debian-org/manifests/init.pp +++ b/modules/debian-org/manifests/init.pp @@ -1,4 +1,14 @@ class debian-org { + if getfromhash($site::nodeinfo, 'hoster', 'mirror-debian') { + $mirror = getfromhash($site::nodeinfo, 'hoster', 'mirror-debian') + } else { + $mirror = 'http://http.debian.net/debian/' + } + if $::lsbmajdistrelease < 7 { + $mirror_backports = 'http://backports.debian.org/debian-backports/' + } else { + $mirror_backports = $mirror + } $debianadmin = [ 'debian-archive-debian-samhain-reports@master.debian.org', @@ -6,6 +16,7 @@ class debian-org { 'weasel@debian.org', 'steve@lobefin.net', 'paravoid@debian.org' + 'zumbi@kos.to' ] package { [ @@ -20,11 +31,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 +48,12 @@ class debian-org { ensure => installed, } + if $::lsbmajdistrelease >= 7 { + package { 'libfilesystem-ruby1.9.1': + ensure => installed, + } + } + munin::check { [ 'cpu', 'entropy', @@ -62,10 +77,7 @@ 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, } } @@ -83,34 +95,16 @@ 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 { 'backports.debian.org': - url => 'http://backports.debian.org/debian-backports/', - suite => "${::lsbdistcodename}-backports", - components => ['main','contrib','non-free'] - } + site::aptrepo { 'security': + url => 'http://security.debian.org/', + 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.debian.org': + url => $mirror_backports, + suite => "${::lsbdistcodename}-backports", + components => ['main','contrib','non-free'] } site::aptrepo { 'backports.org': ensure => absent, @@ -118,6 +112,12 @@ class debian-org { key => 'puppet:///modules/debian-org/backports.org.asc', } + site::aptrepo { 'volatile': + url => $mirror, + suite => "${::lsbdistcodename}-updates", + components => ['main','contrib','non-free'] + } + site::aptrepo { 'debian.org': ensure => absent, } @@ -132,7 +132,7 @@ class debian-org { if getfromhash($site::nodeinfo, 'hoster', 'mirror-debian') { site::aptrepo { 'debian': url => getfromhash($site::nodeinfo, 'hoster', 'mirror-debian'), - suite => "${::lsbdistcodename}", + suite => $::lsbdistcodename, components => ['main','contrib','non-free'] } } @@ -209,12 +209,19 @@ class debian-org { source => 'puppet:///modules/debian-org/dsa-puppet-stuff.cron.ignore', require => Package['debian.org'] } + file { '/etc/nsswitch.conf': + mode => '0755', + source => 'puppet:///modules/debian-org/nsswitch.conf', + } # set mmap_min_addr to 4096 to mitigate # Linux NULL-pointer dereference exploits site::sysctl { 'mmap_min_addr': - key => 'vm.mmap_min_addr', - value => '4096', + ensure => absent + } + site::sysctl { 'perf_event_paranoid': + key => 'kernel.perf_event_paranoid', + value => '2', } site::alternative { 'editor': linkto => '/usr/bin/vim.basic', @@ -232,6 +239,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',