blob: a0fbedfb9d880af1a61357a2401c7aa10b078fa6 [file] [log] [blame]
#!/usr/bin/env sh
if ! whoami 2>&1 /dev/null; then
if [ -w /etc/passwd ]; then
echo "${USER_NAME:-default}:x:$(id -u):0:${USER_NAME:-default} user:${HOME}:/sbin/nologin" >> /etc/passwd
fi
fi
exec "$@"