2022-01-18 11:02:42 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=3
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-05-01 12:35:33 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2022-01-18 11:02:42 +01:00
|
|
|
|
2023-05-01 12:35:33 +02:00
|
|
|
chown -R $app:www-data "$install_dir"
|
2023-05-01 12:49:48 +02:00
|
|
|
chmod +x $install_dir/{kiwix-manage,kiwix-serve,kiwix-search}
|
2022-01-18 11:02:42 +01:00
|
|
|
|
|
|
|
#=================================================
|
2023-08-13 14:40:03 +02:00
|
|
|
# SYSTEM CONFIGURATION
|
2022-01-18 11:02:42 +01:00
|
|
|
#=================================================
|
2023-08-13 14:40:03 +02:00
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
2022-01-18 11:02:42 +01:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2023-08-13 14:40:03 +02:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
yunohost service add $app --description="Internet without Internet access" --log="systemd"
|
|
|
|
|
2022-01-18 11:02:42 +01:00
|
|
|
#=================================================
|
|
|
|
# CREATE DATA DIRECTORY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Creating a data directory..." --weight=1
|
|
|
|
|
2023-05-01 13:35:00 +02:00
|
|
|
pushd $data_dir
|
2023-06-16 19:33:36 +02:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app curl -LO https://download.kiwix.org/zim/wikipedia/wikipedia_fr_climate_change_mini_2023-04.zim > /dev/null
|
2022-03-09 01:15:25 +01:00
|
|
|
popd
|
2022-01-18 11:02:42 +01:00
|
|
|
|
2023-08-13 14:40:03 +02:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app $install_dir/kiwix-manage $data_dir/library.xml add $data_dir/*.zim
|
2022-01-18 11:02:42 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
|
|
|
|
# Start a systemd service
|
2022-02-24 00:09:59 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
|
2022-01-18 11:02:42 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|