8 lines
235 B
Bash
Executable File
8 lines
235 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "# chowning ${PATH_WEBROOT} to ${PUID}:${GROUPNAME}..."
|
|
|
|
chown "${PUID}:${GROUPNAME}" "${PATH_WEBROOT}" -R
|
|
find "${PATH_WEBROOT}" -type d -exec chmod 0755 {} \; &
|
|
find "${PATH_WEBROOT}" -type f -exec chmod 0644 {} \; &
|