Created
December 18, 2011 23:03
-
-
Save juanje/1494754 to your computer and use it in GitHub Desktop.
Cambio de home_users a users
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_users => { | |
"pepe" => { | |
:username => "pepe", | |
:gid => 1000, | |
:uid => 1000, | |
:gecos => "Pepe,,," | |
}, | |
"damian" => { | |
:username => "damian", | |
:gid => 1001, | |
:uid => 1001, | |
:gecos => "David Amian,,," | |
} | |
} | |
} |
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
{ | |
:users => [ | |
{ | |
:username => "pepe", | |
:gid => 1000, | |
:uid => 1000 | |
}, | |
{ | |
:username => "damian", | |
:gid => 1001, | |
:uid => 1001 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment