Closed mikkonie closed 1 month ago
After the upgrade from CentOS to Ubuntu, su - irods doesn't take us to bash anymore. It can still be enabled by running bash manually of course, but this should be the default.
su - irods
bash
I believe this should be easily doable by adding --shell /bin/bash in the useradd command.
--shell /bin/bash
useradd
For existing users, one can use usermod --shell /bin/bash $username.
usermod --shell /bin/bash $username
Done.
After the upgrade from CentOS to Ubuntu,
su - irods
doesn't take us to bash anymore. It can still be enabled by runningbash
manually of course, but this should be the default.