Skip to content
Snippets Groups Projects
puppetclient.pp 2.29 KiB
Newer Older
# install and configure the puppet client
Adam Lewenberg's avatar
Adam Lewenberg committed
class base::puppetclient {
  file { '/etc/puppet':
    ensure => directory,
  }
Adam Lewenberg's avatar
Adam Lewenberg committed
  base::puppetclient::config { '/etc/puppet/puppet.conf':
    ensure => present,
  }
  # pin puppet and facter versions on RHELish systems
  if ($::osfamily == 'RedHat') {
    include base::yumtools::yum_puppet_lock
    package { 'puppet':
      ensure  => present,
      require => [ Base::Puppetclient::Config['/etc/puppet/puppet.conf'],
                  Class['base::yumtools::yum_puppet_lock'] ],
    }
  } else { # Debianish systems; pinning handled at repository level
      package { 'puppet':
        ensure  => present,
        require => Base::Puppetclient::Config['/etc/puppet/puppet.conf'],
      }
  # It appears that on recently updated wheezy servers, 2.x clients need
  # the ruby-json package Puppet systems.
  if ($::lsbdistcodename == 'wheezy') {
    package { 'ruby-json':
      ensure  => present,
    }
  }

  # On squeeze systems, default to the backports version of Puppet.  On wheezy
  # systems, default to the backports version of facter for proper detection
  # of Xen systems.
Adam Lewenberg's avatar
Adam Lewenberg committed
  if $::lsbdistcodename == 'squeeze' {
    file { '/etc/apt/preferences.d/puppet':
      source => 'puppet:///modules/base/puppetclient/etc/apt/preferences.d/puppet',
    }
  }
  if $::lsbdistcodename == 'wheezy' {
    file { '/etc/apt/preferences.d/facter':
      source => 'puppet:///modules/base/puppetclient/etc/apt/preferences.d/facter',
    }
  }
Adam Lewenberg's avatar
Adam Lewenberg committed

  # Install an auth.conf as additional protection against a Puppet
  # vulnerability that could allow unauthenticated Puppet nodes to
  # manipulate its configuration.
Adam Lewenberg's avatar
Adam Lewenberg committed
  file { '/etc/puppet/auth.conf':
    content => template('base/puppetclient/auth.conf.erb'),
Adam Lewenberg's avatar
Adam Lewenberg committed
  }

  # filter-syslog rules for the Puppet client.
  file { '/etc/filter-syslog/puppet':
    source => 'puppet:///modules/base/puppetclient/etc/filter-syslog/puppet';
  }

  # Check for a puppetd process on an hourly basis.
  file { '/etc/cron.hourly/check-puppet':
    source => 'puppet:///modules/base/puppetclient/etc/cron.hourly/check-puppet';
  }

  # Install a directory for external facts.  Used on both Debian and RHEL.
  file {
    '/etc/facter/':
      ensure => directory,
      mode   => '0644';
      ensure => directory,
      mode   => '0644';