Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set shell to bash when adding users #11

Open
anandology opened this issue Nov 24, 2022 · 2 comments
Open

Set shell to bash when adding users #11

anandology opened this issue Nov 24, 2022 · 2 comments
Assignees

Comments

@anandology
Copy link
Member

When the users are added to the jupyterjub, the shell defaults to sh instead of bash.

For example, the following are the entries in /etc/passwd file in the jupyterhub container.

kaustubh1:x:1000:1000::/home/kaustubh1:/bin/sh
kaustubh2:x:1001:1001::/home/kaustubh2:/bin/sh
anand:x:1002:1002::/home/anand:/bin/sh

This leads to starting sh when a terminal is opened from jupyterlab.

I think we need to fix this by explicitly specifying the shell when adding users.

@anandology
Copy link
Member Author

Fixed it in current instance by running:

tail -15 /etc/passwd | sed 's/:.*//' | xargs -n1 echo chsh -s /bin/bash

@nikochiko
Copy link
Contributor

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants