File permission adjustment for podman as root
This commit is contained in:
parent
c82acc8f52
commit
e92ca2c39e
|
@ -5,6 +5,11 @@ IFS=$'\n\t'
|
|||
|
||||
DIR="${0%/*}"
|
||||
|
||||
podman unshare -- chown -R 33 "$DIR"
|
||||
podman unshare -- chgrp -R 0 "$DIR"
|
||||
podman unshare -- chmod -R ug+rw "$DIR"
|
||||
if [ $(id -u) -eq 0 ];then
|
||||
podman exec nextcloud chown -R 33 /var/www/html/custom_apps
|
||||
podman exec nextcloud chmod -R ug+rw /var/www/html/custom_apps
|
||||
else
|
||||
podman unshare -- chown -R 33 "$DIR"
|
||||
podman unshare -- chgrp -R 0 "$DIR"
|
||||
podman unshare -- chmod -R ug+rw "$DIR"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue