mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-02-13 23:36:44 +08:00
10 lines
213 B
Bash
10 lines
213 B
Bash
#!/bin/bash
|
|
|
|
echo "设置文件夹权限"
|
|
echo "PUID=${PUID}"
|
|
echo "PGID=${PGID}"
|
|
|
|
groupmod -o -g "$PGID" auto_bangumi
|
|
usermod -o -u "$PUID" auto_bangumi
|
|
|
|
chown -R auto_bangumi:auto_bangumi /src /templates /config |