Create demo_win1.pp

This commit is contained in:
tonyjuric 2019-10-31 10:11:46 +11:00 committed by GitHub
parent 1a8908949f
commit d86d30ca6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
manifests/demo_win1.pp Normal file
View File

@ -0,0 +1,13 @@
group { 'demo group':
name => 'test2',
ensure => present,
members => ['petagentadmin','petriuser1'],
auth_membership => false,
}
user { 'ajuric1':
ensure => present,
password => 'Pass!3w0rd',
groups => 'test2',
auth_membership => inclusive
}