mirror of
https://github.com/YunoHost-Apps/nextcloud_ynh.git
synced 2024-09-03 19:55:57 +02:00
6 lines
197 B
Bash
6 lines
197 B
Bash
#!/bin/bash
|
|
|
|
user="$1"
|
|
app="$(basename $0 | cut -d- -f 2-)" # Extract the app name from the script name, which is supposed to be something like "50-app_id"
|
|
|
|
setfacl --modify g:$app:rwx /home/$user
|