UID and GID are always set

This commit is contained in:
flow.gunso
2019-04-09 11:46:40 +02:00
parent 3b528f1b12
commit 891d34aad1

View File

@@ -1,13 +1,9 @@
#!/bin/bash #!/bin/bash
if [ -z $UID ] && [ -z $GID ]; then groupadd -g $GID -o $UNAME ;\
groupadd -g $GID -o $UNAME ;\ useradd -m -u $UID -g $GID -o -s /bin/bash $UNAME ;\
useradd -m -u $UID -g $GID -o -s /bin/bash $UNAME ;\ chown $UID.$GID -R /.seafile ;\
chown $UID.$GID -R /.seafile ;\ chown $UID.$GID -R /.supervisord ;\
chown $UID.$GID -R /.supervisord ;\ chown $UID.$GID -R /volume ;\
chown $UID.$GID -R /volume ;\ chown $UID.$GID /entrypoint.sh ;\
chown $UID.$GID /entrypoint.sh ;\ chown $UID.$GID /infinite-seaf-cli-start.sh
chown $UID.$GID /infinite-seaf-cli-start.sh
else
echo "\$UID and \$GID environment variables are required to update files ownership."
fi