mirror of
https://github.com/YunoHost-Apps/snappymail_ynh.git
synced 2024-09-03 20:26:29 +02:00
51 lines
1.6 KiB
Bash
Executable file
51 lines
1.6 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
#=================================================
|
|
ynh_script_progression "Setting up source files..."
|
|
|
|
ynh_setup_source --dest_dir="$install_dir/app"
|
|
|
|
chmod -R "u=rX,g=rX,o=" "$install_dir"
|
|
chown -R "$app:www-data" "$install_dir"
|
|
|
|
#=================================================
|
|
# ADD A CONFIGURATION
|
|
#=================================================
|
|
ynh_script_progression "Adding $app's configuration..."
|
|
|
|
mkdir -p "$install_dir/app/data/_data_/_default_/configs"
|
|
ynh_config_add --template="application.ini" --destination="$install_dir/app/data/_data_/_default_/configs/application.ini"
|
|
|
|
chmod -R "u=rwX,g=,o=" "$install_dir/app/data"
|
|
chown -R "$app:$app" "$install_dir/app/data"
|
|
|
|
#=================================================
|
|
# SETUP SSO
|
|
#=================================================
|
|
ynh_script_progression "Applying SSO patch..."
|
|
|
|
ynh_config_add --template="sso.php" --destination="$install_dir/index.php"
|
|
chmod "u=rX,g=,o=" "$install_dir/index.php"
|
|
chown "$app:www-data" "$install_dir/index.php"
|
|
|
|
#=================================================
|
|
# SYSTEM CONFIGURATION
|
|
#=================================================
|
|
ynh_script_progression "Adding system configurations related to $app..."
|
|
|
|
ynh_config_add_phpfpm
|
|
|
|
ynh_config_add_nginx
|
|
|
|
ynh_config_add_logrotate
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression "Installation of $app completed"
|