Created
April 24, 2014 22:23
-
-
Save justinclayton/11271590 to your computer and use it in GitHub Desktop.
running puppet resource on a host not managed by puppet
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
$ puppet resource user justin | |
user { 'justin': | |
ensure => 'present', | |
comment => 'Justin Clayton', | |
gid => '20', | |
groups => ['_appserveradm', '_appserverusr', '_lpadmin', 'access_bpf', 'admin'], | |
home => '/Users/justin', | |
password => '*', | |
shell => '/bin/zsh', | |
uid => '501', | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment