mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-02-03 02:04:06 +08:00
15 lines
277 B
Bash
15 lines
277 B
Bash
#!/bin/bash
|
|
# shellcheck shell=bash
|
|
|
|
umask ${UMASK}
|
|
|
|
if [ -f /config/bangumi.json ]; then
|
|
mv /config/bangumi.json /app/data/bangumi.json
|
|
fi
|
|
|
|
groupmod -o -g "${PGID}" ab
|
|
usermod -o -u "${PUID}" ab
|
|
|
|
chown ab:ab -R /app /home/ab
|
|
|
|
exec su-exec "${PUID}:${PGID}" python3 main.py |