Skip to content
Snippets Groups Projects
ubuntu.pp 774 B
Newer Older
Adam Lewenberg's avatar
Adam Lewenberg committed
# General configuration for Ubuntu.  This is mostly the same as Debian, and
# hence inherits from it, but has some additional customization for Ubuntu.

# Supervise handling here should be moved to a daemontools module.
class base::os::ubuntu inherits base::os::debian {
  file {
    '/etc/apt/apt.conf.d/06apt':
      source => 'puppet:///modules/base/os/etc/apt/apt.conf.d/06apt';
    '/etc/bash.bashrc':
      source => 'puppet:///modules/base/os/etc/bash.bashrc';
    '/etc/init/supervise.conf':
      source => 'puppet:///modules/base/os/etc/init/supervise.conf',
      notify => Exec['start supervise'];
  }

  # Triggered on Ubuntu to start the supervise process.
  exec { 'start supervise':
    command     => '/sbin/start supervise',
    refreshonly => true,
  }
Darren Patterson's avatar
Darren Patterson committed
}