Merge pull request #6 from dmahlow/bash_as_default

Set bash as default shell for created users.
This commit is contained in:
Carl Mercier 2013-03-31 07:33:39 -07:00
commit f9ec8d776a
1 changed files with 2 additions and 2 deletions

View File

@ -266,9 +266,9 @@ add_user () {
[ "$pass" == "" ] && pass=generate_password
if [[ "$args" != *nohome* ]]; then
/usr/sbin/useradd --password `openssl passwd -crypt $pass` --create-home $user
/usr/sbin/useradd --password `openssl passwd -crypt $pass` --create-home $user --shell /bin/bash
else
/usr/sbin/useradd --password `openssl passwd -crypt $pass` $user
/usr/sbin/useradd --password `openssl passwd -crypt $pass` $user --shell /bin/bash
fi
fi
}