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

13 lines
216 B
ObjectPascal
Raw Normal View History

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