default shell is bash, not fish

... sadly :(
This commit is contained in:
Franzi 2020-02-29 14:47:41 +00:00
parent 010078cc3a
commit d0ba89a1f3
Signed by: kunsi
GPG key ID: 12E3D2136B818350
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ for username, attrs in node.metadata['users'].items():
user = users.setdefault(username, {})
user['home'] = home
user['shell'] = attrs.get('shell', '/usr/bin/fish')
user['shell'] = attrs.get('shell', '/bin/bash')
user['password'] = repo.vault.human_password_for('user {} on {}'.format(username, node.name))
if 'groups' in attrs: