Created
January 27, 2010 18:54
-
-
Save jsierles/288084 to your computer and use it in GitHub Desktop.
example role for chef users recipe
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
:groups => {:app => {:gid => 1003}, | |
:site => {:gid => 3001}, | |
:support => {:gid => 3002} | |
}, | |
:users => { | |
:app => { | |
:password => "$1$39393939393939393.", | |
:comment => "App User", | |
:uid => 1000, | |
:groups => [:app], | |
:ssh_key_groups => [:app,:site], | |
:extra_ssh_keys => [:nagios, :solr] | |
} | |
}, | |
:ssh_keys => { | |
:app => "somekey" | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment