-
Jan David Mol authored
Task #10983: Propagate /etc/{group,passwd} from the host instead of modifying the one in the container, removing a few quirks
Jan David Mol authoredTask #10983: Propagate /etc/{group,passwd} from the host instead of modifying the one in the container, removing a few quirks
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
chuser.sh 350 B
#!/usr/bin/env bash
# Configure user
if [ -z "${USER}" ]; then
export USER=${UID}
fi
# Create home directory
if [ -z "${HOME}" ]; then
export HOME=/home/${USER}
mkdir -p $HOME && cd $HOME
fi
# Set the environment
[ -e /opt/bashrc ] && source /opt/bashrc
# Run the requested command
if [ -z "$*" ]; then
exec /bin/bash
else
exec "$@"
fi