control-repo/site/profile/manifests/base.pp

14 lines
246 B
ObjectPascal
Raw Normal View History

class profile::base {
2016-06-14 23:45:17 +00:00
accounts::user { 'joe': }
2016-06-15 00:49:12 +00:00
accounts::user { 'monitoring':
ensure => present,
uid => 450,
gid => 450,
managehome => false,
locked => true,
shell => '/bin/false'
}
}