mirror of
https://github.com/YunoHost-Apps/element_ynh.git
synced 2024-09-03 18:36:08 +02:00
12 lines
347 B
Bash
Executable file
12 lines
347 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#=================================================
|
|
# COMMON VARIABLES AND CUSTOM HELPERS
|
|
#=================================================
|
|
|
|
configure_element()
|
|
{
|
|
ynh_config_add --template="config.json" --destination="$install_dir/config.json"
|
|
chmod -R u=rwX,g=rX,o= "$install_dir"
|
|
chown -R $app:www-data "$install_dir"
|
|
}
|