2021-01-09 12:31:07 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC STARTING
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2021-01-10 14:40:27 +01:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2021-01-09 12:31:07 +01:00
|
|
|
|
2022-10-05 00:36:46 +02:00
|
|
|
# Add settings here as needed by your application
|
|
|
|
key=$(ynh_app_setting_get --app=$app --key=key)
|
2023-03-18 23:44:14 +01:00
|
|
|
password_hash=$(ynh_app_setting_get --app=$app --key=password_hash)
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-01-10 14:40:27 +01:00
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
2021-01-09 12:31:07 +01:00
|
|
|
|
2022-10-05 00:36:46 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
|
|
|
|
ynh_systemd_action --service_name=${app}_ldap --action="stop" --log_path="systemd"
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MODIFY URL IN NGINX CONF
|
|
|
|
#=================================================
|
2021-01-10 14:40:27 +01:00
|
|
|
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=2
|
2021-01-09 12:31:07 +01:00
|
|
|
|
2023-02-27 15:42:08 +01:00
|
|
|
ynh_change_url_nginx_config
|
2021-01-09 12:31:07 +01:00
|
|
|
|
2021-11-06 11:29:22 +01:00
|
|
|
#=================================================
|
2022-10-05 00:36:46 +02:00
|
|
|
# SPECIFIC MODIFICATIONS
|
2021-11-06 11:29:22 +01:00
|
|
|
#=================================================
|
2022-10-05 00:36:46 +02:00
|
|
|
# UPDATE A CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Updating a configuration file..." --weight=2
|
2021-11-06 11:29:22 +01:00
|
|
|
|
|
|
|
domain="$new_domain"
|
2022-10-05 00:36:46 +02:00
|
|
|
# Configure Galene
|
2023-02-27 15:42:08 +01:00
|
|
|
ynh_add_config --template="../conf/config.json" --destination="$install_dir/live/data/config.json"
|
|
|
|
chmod 400 "$install_dir/live/data/config.json"
|
|
|
|
chown $app:$app "$install_dir/live/data/config.json"
|
2022-10-05 00:36:46 +02:00
|
|
|
|
|
|
|
# Configure Galene LDAP
|
2023-03-19 08:16:27 +01:00
|
|
|
#ynh_add_config --template="../conf/galene-ldap.json" --destination="$install_dir/live_ldap/data/galene-ldap.json"
|
|
|
|
#chmod 400 "$install_dir/live_ldap/data/galene-ldap.json"
|
|
|
|
#chown $app:$app "$install_dir/live_ldap/data/galene-ldap.json"
|
2022-10-05 00:36:46 +02:00
|
|
|
|
|
|
|
# Create a group name config
|
2023-03-19 08:16:27 +01:00
|
|
|
#ynh_add_config --template="../conf/groupname.json" --destination="$data_dir/groups/$group_name.json"
|
|
|
|
#chmod 400 "$data_dir/groups/$group_name.json"
|
|
|
|
#chown $app:$app "$data_dir/groups/$group_name.json"
|
2021-11-06 11:29:22 +01:00
|
|
|
|
2022-10-05 00:36:46 +02:00
|
|
|
# Create a group name authenticated on LDAP
|
2023-02-27 15:42:08 +01:00
|
|
|
ynh_add_config --template="../conf/groupname-ldap.json" --destination="$data_dir/groups/YunoHost_Users.json"
|
|
|
|
chmod 400 "$data_dir/groups/YunoHost_Users.json"
|
|
|
|
chown $app:$app "$data_dir/groups/YunoHost_Users.json"
|
2021-11-06 11:29:22 +01:00
|
|
|
|
2021-01-09 12:31:07 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALISATION
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-03-02 20:49:10 +01:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=3
|
2021-01-09 12:31:07 +01:00
|
|
|
|
2022-10-05 00:36:46 +02:00
|
|
|
# Start a systemd service
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
|
|
|
|
ynh_systemd_action --service_name=${app}_ldap --action="start" --log_path="systemd"
|
2021-01-09 12:31:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-09-08 23:27:51 +02:00
|
|
|
ynh_script_progression --message="Change of URL completed for $app" --last
|