X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fdebian-org%2Fmanifests%2Finit.pp;h=e8962c6dfa58cfa907bfe11ed08b8714a21352e6;hb=d55193d32bcface5935ae2a6acc2cdc6eed71a80;hp=9f6f3b3d6658d65a1c46688a2d02a3b1548a1941;hpb=71943101920e3cec115719e5d06023dc0eff25fb;p=mirror%2Fdsa-puppet.git diff --git a/modules/debian-org/manifests/init.pp b/modules/debian-org/manifests/init.pp index 9f6f3b3d6..e8962c6df 100644 --- a/modules/debian-org/manifests/init.pp +++ b/modules/debian-org/manifests/init.pp @@ -3,15 +3,13 @@ # Stuff common to all debian.org servers # 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/' + include debian-org::apt + + if $systemd { + include systemd + $servicefiles = 'present' } else { - $mirror_backports = $mirror + $servicefiles = 'absent' } $debianadmin = [ @@ -19,14 +17,15 @@ class debian-org { 'debian-admin@ftbfs.de', 'weasel@debian.org', 'steve@lobefin.net', - 'paravoid@debian.org', - 'zumbi@kos.to' + 'zumbi@oron.es' ] package { [ 'klogd', 'sysklogd', 'rsyslog', + 'os-prober', + 'apt-listchanges', ]: ensure => purged, } @@ -37,27 +36,33 @@ class debian-org { ensure => installed, tag => extra_repo, } + file { '/etc/ssh/ssh_known_hosts': + ensure => present, + replace => false, + mode => '0644', + source => 'puppet:///modules/debian-org/basic-ssh_known_hosts' + } + if ($::lsbmajdistrelease >= 8) { + $rubyfs_package = 'ruby-filesystem' + } else { + $rubyfs_package = 'libfilesystem-ruby1.9' + } package { [ 'apt-utils', 'bash-completion', 'dnsutils', 'less', 'lsb-release', - 'libfilesystem-ruby1.8', + $rubyfs_package, 'mtr-tiny', 'nload', 'pciutils', + 'lldpd', ]: ensure => installed, } - if $::lsbmajdistrelease >= 7 { - package { 'libfilesystem-ruby1.9.1': - ensure => installed, - } - } - munin::check { [ 'cpu', 'entropy', @@ -67,8 +72,6 @@ class debian-org { 'irqstats', 'load', 'memory', - 'ntp_offset', - 'ntp_states', 'open_files', 'open_inodes', 'processes', @@ -99,64 +102,6 @@ class debian-org { require => Package['molly-guard'], } - file { '/etc/apt/trusted-keys.d': - ensure => absent, - force => true, - } - - file { '/etc/apt/trusted.gpg': - mode => '0600', - content => "", - } - - site::aptrepo { 'security': - url => 'http://security.debian.org/', - suite => "${::lsbdistcodename}/updates", - components => ['main','contrib','non-free'] - } - if $::lsbmajdistrelease < 7 { - site::aptrepo { 'debian-lts': - url => $mirror, - suite => "${::lsbdistcodename}-lts", - components => ['main','contrib','non-free'] - } - else - site::aptrepo { 'debian-lts': - ensure => absent, - } - } - - site::aptrepo { 'backports.debian.org': - url => $mirror_backports, - suite => "${::lsbdistcodename}-backports", - components => ['main','contrib','non-free'] - } - - site::aptrepo { 'volatile': - url => $mirror, - suite => "${::lsbdistcodename}-updates", - components => ['main','contrib','non-free'] - } - - if $::hostname in [ball, corelli, eysler, lucatelli, mayer, mayr, rem] { - site::aptrepo { 'proposed-updates': - url => $mirror, - suite => "${::lsbdistcodename}-proposed-updates", - components => ['main','contrib','non-free'] - } - } - - site::aptrepo { 'debian.org': - ensure => absent, - } - - site::aptrepo { 'db.debian.org': - url => 'http://db.debian.org/debian-admin', - suite => 'lenny', - components => 'main', - key => 'puppet:///modules/debian-org/db.debian.org.gpg', - } - augeas { 'inittab_replicate': context => '/files/etc/inittab', changes => [ @@ -167,13 +112,6 @@ class debian-org { notify => Exec['init q'], } - 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, @@ -188,18 +126,6 @@ class debian-org { file { '/etc/facter/facts.d/debian_facts.yaml': content => template('debian-org/debian_facts.yaml.erb') } - file { '/etc/apt/preferences': - source => 'puppet:///modules/debian-org/apt.preferences', - } - file { '/etc/apt/apt.conf.d/local-compression': - source => 'puppet:///modules/debian-org/apt.conf.d/local-compression', - } - file { '/etc/apt/apt.conf.d/local-recommends': - source => 'puppet:///modules/debian-org/apt.conf.d/local-recommends', - } - file { '/etc/apt/apt.conf.d/local-pdiffs': - source => 'puppet:///modules/debian-org/apt.conf.d/local-pdiffs', - } file { '/etc/timezone': source => 'puppet:///modules/debian-org/timezone', notify => Exec['dpkg-reconfigure tzdata -pcritical -fnoninteractive'], @@ -210,17 +136,50 @@ class debian-org { } file { '/etc/puppet/puppet.conf': content => template('debian-org/puppet.conf.erb'), + mode => 0440, + group => 'puppet', } 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/systemd/system/proc-sys-fs-binfmt_misc.automount': + 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': require => Package['debian.org'], - source => 'puppet:///modules/debian-org/ldap.conf', + content => template('debian-org/ldap.conf.erb'), } file { '/etc/pam.d/common-session': require => Package['debian.org'], @@ -232,8 +191,8 @@ class debian-org { } file { '/etc/rc.local': mode => '0755', - source => 'puppet:///modules/debian-org/rc.local', - notify => Exec['rc.local start'], + content => template('debian-org/rc.local.erb'), + notify => Exec['service rc.local restart'], } file { '/etc/dsa': ensure => directory, @@ -248,6 +207,18 @@ class debian-org { source => 'puppet:///modules/debian-org/nsswitch.conf', } + file { '/etc/profile.d/timeout.sh': + mode => '0555', + source => 'puppet:///modules/debian-org/etc.profile.d/timeout.sh', + } + file { '/etc/zsh': + ensure => directory, + } + file { '/etc/zsh/zprofile': + mode => '0444', + source => 'puppet:///modules/debian-org/etc.zsh/zprofile', + } + # set mmap_min_addr to 4096 to mitigate # Linux NULL-pointer dereference exploits site::sysctl { 'mmap_min_addr': @@ -257,6 +228,10 @@ class debian-org { key => 'kernel.perf_event_paranoid', value => '2', } + site::sysctl { 'puppet-vfs_cache_pressure': + key => 'vm.vfs_cache_pressure', + value => '10', + } site::alternative { 'editor': linkto => '/usr/bin/vim.basic', } @@ -276,29 +251,30 @@ class debian-org { group => root, } - exec { 'apt-get update': - path => '/usr/bin:/usr/sbin:/bin:/sbin', - onlyif => '/usr/local/bin/check_for_updates', - require => File['/usr/local/bin/check_for_updates'] - } - Exec['apt-get update']->Package<| tag == extra_repo |> - exec { 'dpkg-reconfigure tzdata -pcritical -fnoninteractive': path => '/usr/bin:/usr/sbin:/bin:/sbin', refreshonly => true } - exec { 'puppetmaster restart': - path => '/etc/init.d:/usr/bin:/usr/sbin:/bin:/sbin', + exec { 'service puppetmaster restart': refreshonly => true } - exec { 'rc.local start': - path => '/etc/init.d:/usr/bin:/usr/sbin:/bin:/sbin', + exec { 'service rc.local restart': refreshonly => true } exec { 'init q': refreshonly => true } + exec { 'systemctl daemon-reload': + refreshonly => true, + onlyif => "test -x /bin/systemctl" + } + + exec { 'systemd-tmpfiles --create --exclude-prefix=/dev': + refreshonly => true, + onlyif => "test -x /bin/systemd-tmpfiles" + } + tidy { '/var/lib/puppet/clientbucket/': age => '2w', recurse => 9, @@ -306,4 +282,23 @@ class debian-org { matches => [ 'paths', 'contents' ], schedule => weekly } + + file { '/root/.bashrc': + source => 'puppet:///modules/debian-org/root-dotfiles/bashrc', + } + file { '/root/.profile': + source => 'puppet:///modules/debian-org/root-dotfiles/profile', + } + file { '/root/.selected_editor': + source => 'puppet:///modules/debian-org/root-dotfiles/selected_editor', + } + file { '/root/.screenrc': + source => 'puppet:///modules/debian-org/root-dotfiles/screenrc', + } + file { '/root/.tmux.conf': + source => 'puppet:///modules/debian-org/root-dotfiles/tmux.conf', + } + file { '/root/.vimrc': + source => 'puppet:///modules/debian-org/root-dotfiles/vimrc', + } }