mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-21 20:36:29 +00:00
Merge pull request #6 from dmahlow/bash_as_default
Set bash as default shell for created users.
This commit is contained in:
commit
f9ec8d776a
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user