Created
December 15, 2015 01:55
-
-
Save awaxa/3811e7c299d71a4c58ed to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/puppet/modules/users/manifests/init.pp | |
class users { | |
user { 'greg': | |
ensure => present, | |
gid => 'supercool', | |
} | |
user { 'david': | |
ensure => present, | |
gid => 'supercool', | |
} | |
group { 'supercool': | |
ensure => present, | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /home/user/testfile.pp | |
user { 'greg': | |
ensure => present, | |
gid => 'supercool', | |
} | |
user { 'david': | |
ensure => present, | |
gid => 'supercool', | |
} | |
group { 'supercool': | |
ensure => present, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment