18 lines
398 B
Plaintext
18 lines
398 B
Plaintext
|
#!/usr/bin/with-contenv bash
|
||
|
# shellcheck shell=bash
|
||
|
# https://github.com/linuxserver/docker-baseimage-alpine/blob/master/root/etc/s6-overlay/s6-rc.d/init-adduser/run
|
||
|
|
||
|
PUID=${PUID:-911}
|
||
|
PGID=${PGID:-911}
|
||
|
|
||
|
groupmod -o -g "$PGID" abc
|
||
|
mkdir /dummy
|
||
|
usermod -d /dummy abc
|
||
|
usermod -o -u "$PUID" abc
|
||
|
usermod -d /config abc
|
||
|
rmdir /dummy
|
||
|
|
||
|
lsiown abc:abc /app
|
||
|
lsiown abc:abc /config
|
||
|
lsiown abc:abc /defaults
|