From 6e37edbdfe43f7b2fb5cf0b3130dd5beb45f9b06 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 7 Feb 2021 08:27:21 +0100 Subject: [PATCH] Delete 10-adduser --- nextcloud/root/etc/cont-init.d/10-adduser | 39 ----------------------- 1 file changed, 39 deletions(-) delete mode 100644 nextcloud/root/etc/cont-init.d/10-adduser diff --git a/nextcloud/root/etc/cont-init.d/10-adduser b/nextcloud/root/etc/cont-init.d/10-adduser deleted file mode 100644 index 1013098f3..000000000 --- a/nextcloud/root/etc/cont-init.d/10-adduser +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/with-contenv bash - -PUID=${PUID:-911} -PGID=${PGID:-911} - -groupmod -o -g "$PGID" abc -usermod -o -u "$PUID" abc -mkdir -p /data/config -mkdir -p /share/nextcloud -echo ' -------------------------------------- - _ () - | | ___ _ __ - | | / __| | | / \ - | | \__ \ | | | () | - |_| |___/ |_| \__/ - - -Brought to you by linuxserver.io --------------------------------------' -if [[ -f /donate.txt ]]; then - echo ' -To support the app dev(s) visit:' - cat /donate.txt -fi -echo ' -To support LSIO projects visit: -https://www.linuxserver.io/donate/ -------------------------------------- -GID/UID --------------------------------------' -echo " -User uid: $(id -u abc) -User gid: $(id -g abc) -------------------------------------- -" -chown abc:abc /app -chown abc:abc /data/config -chown abc:abc /defaults