Skip to main content
summaryrefslogtreecommitdiffstats
blob: c44d398d5934f494363c70493aa08b49939df8bb (plain) (blame)
1
2
3
4
5
6
7
#!/usr/bin/env sh
if ! whoami > /dev/null 2>&1; 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 "$@"

Back to the top