Skip to content

Instantly share code, notes, and snippets.

@ody
Created January 25, 2012 21:31
Show Gist options
  • Select an option

  • Save ody/1678875 to your computer and use it in GitHub Desktop.

Select an option

Save ody/1678875 to your computer and use it in GitHub Desktop.
class pe_users {
user { 'pe-puppet':
ensure => present,
comment => 'Puppet configuration management daemon,,,',
gid => '460',
home => '/var/opt/lib/pe-puppet',
shell => '/bin/false',
uid => '103',
}
group { 'pe-puppet':
ensure => present,
gid => '460',
}
user { 'pe-apache':
ensure => present,
comment => 'Puppet Apache',
gid => '458',
home => '/opt/puppet/var/www',
shell => '/bin/nologin',
uid => '101',
}
group { 'pe-apache':
ensure => present,
gid => '458',
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment