mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
8 lines
211 B
Text
8 lines
211 B
Text
![]() |
#!/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 "$@"
|