Created
April 24, 2009 03:58
-
-
Save lachie/100927 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| DEBUG: Processing user[lachie] | |
| DEBUG: user[lachie] using Chef::Provider::User::Useradd | |
| DEBUG: Setting user[lachie] comment to Lachie Cox | |
| DEBUG: Managing the home directory for user[lachie] | |
| DEBUG: Executing usermod -c 'Lachie Cox' -m lachie | |
| DEBUG: Nothing to read on 'usermod -c 'Lachie Cox' -m lachie' STDOUT. | |
| DEBUG: ---- Begin usermod -c 'Lachie Cox' -m lachie STDERR ---- | |
| DEBUG: Usage: usermod [options] LOGIN | |
| Options: | |
| -c, --comment COMMENT new value of the GECOS field | |
| -d, --home HOME_DIR new home directory for the user account | |
| -e, --expiredate EXPIRE_DATE set account expiration date to EXPIRE_DATE | |
| -f, --inactive INACTIVE set password inactive after expiration | |
| to INACTIVE | |
| -g, --gid GROUP force use GROUP as new primary group | |
| -G, --groups GROUPS new list of supplementary GROUPS | |
| -a, --append append the user to the supplemental GROUPS | |
| mentioned by the -G option without removing | |
| him/her from other groups | |
| -h, --help display this help message and exit | |
| -l, --login NEW_LOGIN new value of the login name | |
| -L, --lock lock the user account | |
| -m, --move-home move contents of the home directory to the new | |
| location (use only with -d) | |
| -o, --non-unique allow using duplicate (non-unique) UID | |
| -p, --password PASSWORD use encrypted password for the new password | |
| -s, --shell SHELL new login shell for the user account | |
| -u, --uid UID new UID for the user account | |
| -U, --unlock unlock the user account | |
| DEBUG: ---- End usermod -c 'Lachie Cox' -m lachie STDERR ---- | |
| ERROR: user[lachie] (/home/lachie/chef/cookbooks/plus2/recipes/users.rb line 5) had an error: | |
| returned 2, expected 0 |
This file contains hidden or 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
| username = user[:username] | |
| user username do | |
| comment user[:name] | |
| shell "/bin/bash" | |
| home "/home/#{username}" | |
| supports :manage_home => true | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment