1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ergo_ynh.git synced 2024-09-03 18:26:31 +02:00
ergo_ynh/scripts/install

126 lines
4.2 KiB
Text
Raw Normal View History

2022-04-18 11:09:01 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2023-06-06 20:52:11 +02:00
ynh_script_progression --message="Validating installation parameters..." --weight=1
2022-04-18 11:09:01 +02:00
2023-06-06 20:35:54 +02:00
install_dir_www=/var/www/$app
2023-06-06 20:52:11 +02:00
ynh_app_setting_set --app=$app --key=install_dir_www --value=$install_dir_www
2022-06-02 06:45:15 +02:00
2023-06-06 20:52:11 +02:00
test ! -e "$install_dir_www" || ynh_die --message="This path already contains a folder"
2022-06-01 00:04:09 +02:00
2022-04-18 11:09:01 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2022-07-06 19:55:57 +02:00
ynh_script_progression --message="Setting up source files..." --weight=10
2022-04-18 11:09:01 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-06-06 20:52:11 +02:00
ynh_setup_source --dest_dir="$install_dir"
2023-06-06 20:35:54 +02:00
ynh_setup_source --dest_dir="$install_dir" --source_id=ldap
2022-04-18 11:09:01 +02:00
2023-06-06 20:35:54 +02:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
chmod +x "$install_dir/ergo"
2022-04-18 11:09:01 +02:00
2022-07-06 20:04:13 +02:00
# Copy help file
2023-06-06 20:35:54 +02:00
mkdir -p "$install_dir_www/help"
2022-07-06 20:04:13 +02:00
if test -e "$YNH_APP_BASEDIR/sources/extra_files/help"; then
2023-06-06 20:35:54 +02:00
cp --archive "$YNH_APP_BASEDIR/sources/extra_files/help/." "$install_dir_www/help"
2022-07-06 20:04:13 +02:00
fi
2023-06-06 20:35:54 +02:00
ynh_replace_vars --file="$install_dir_www/help/index.html"
2022-07-06 20:04:13 +02:00
2023-06-06 20:35:54 +02:00
chmod 750 "$install_dir_www"
chmod -R o-rwx "$install_dir_www"
chown -R "www-data":"www-data" "$install_dir_www"
2022-07-06 20:04:13 +02:00
2022-04-18 11:09:01 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2022-07-06 19:55:57 +02:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
2022-04-18 11:09:01 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2022-09-28 03:31:30 +02:00
#=================================================
# SPECIFIC SETUP
2022-04-18 11:09:01 +02:00
#=================================================
# ADD A CONFIGURATION
#=================================================
2022-07-06 19:55:57 +02:00
ynh_script_progression --message="Adding a configuration file..." --weight=2
2022-04-18 11:09:01 +02:00
2022-07-06 17:58:27 +02:00
# Get Password Hash
2023-06-06 20:35:54 +02:00
passwordhash=$((echo "$password"; echo "$password") | $install_dir/ergo genpasswd)
2022-07-06 17:58:27 +02:00
# Enable ldap authentication if necessary
ldapoption=false
if [ $enable_ldap -eq 1 ]
then
ldapoption=true
fi
2022-04-18 11:34:27 +02:00
server=$domain
2023-06-06 20:35:54 +02:00
ynh_add_config --template="../conf/default.yaml" --destination="$install_dir/ircd.yaml"
ynh_add_config --template="../conf/ldap-config.yaml" --destination="$install_dir/ldap-config.yaml"
ynh_add_config --template="../conf/ircd.motd" --destination="$install_dir/ircd.motd"
2022-04-18 11:09:01 +02:00
2023-06-06 20:35:54 +02:00
chmod 400 "$install_dir/ircd.yaml"
chown $app: "$install_dir/ircd.yaml"
2022-04-18 11:09:01 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2022-07-06 19:55:57 +02:00
ynh_script_progression --message="Configuring a systemd service..." --weight=3
2022-04-18 11:09:01 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
2022-07-06 19:55:57 +02:00
ynh_script_progression --message="Configuring log rotation..." --weight=2
2022-04-18 11:09:01 +02:00
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2022-07-06 23:09:44 +02:00
# Build the ports list
needed_ports=()
needed_ports+=( "$port" )
2023-06-06 21:56:58 +02:00
needed_ports+=( "$port_secure" )
2022-07-06 23:09:44 +02:00
2022-07-06 19:55:57 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2022-04-18 11:09:01 +02:00
2022-07-06 23:09:44 +02:00
yunohost service add $app --description="A modern IRC server" --log="/var/log/$app/$app.log" ${needed_ports:+--needs_exposed_ports} "${needed_ports[@]}"
2022-04-18 11:09:01 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-07-06 19:55:57 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2022-04-18 11:09:01 +02:00
# Start a systemd service
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# END OF SCRIPT
#=================================================
2022-07-06 19:55:57 +02:00
ynh_script_progression --message="Installation of $app completed" --last