mirror of
https://github.com/YunoHost-Apps/yeswiki_ynh.git
synced 2024-09-03 18:05:56 +02:00
31 lines
909 B
Bash
31 lines
909 B
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# COMMON VARIABLES
|
|
#=================================================
|
|
|
|
loginldap_version="2021-03-01-2"
|
|
|
|
#=================================================
|
|
# PERSONAL HELPERS
|
|
#=================================================
|
|
|
|
# update directory right
|
|
# | arg: app - The application's name ; default : yeswiki
|
|
# | arg: install_dir - The path of the application's folder
|
|
# yeswiki_update_dir_rights yeswiki /var/www/yeswiki
|
|
yeswiki_update_dir_rights() {
|
|
local app="${1:-yeswiki}"
|
|
local install_dir="${2}"
|
|
|
|
chown -R $app:www-data $install_dir
|
|
chmod -R u=rwx,g=rx,o-rwx $install_dir
|
|
}
|
|
|
|
#=================================================
|
|
# EXPERIMENTAL HELPERS
|
|
#=================================================
|
|
|
|
#=================================================
|
|
# FUTURE OFFICIAL HELPERS
|
|
#=================================================
|