2021-05-27 02:26:40 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2022-01-17 00:31:32 +01:00
|
|
|
auth="none"
|
|
|
|
ynh_app_setting_set --app=$app --key=auth --value=$auth
|
2021-05-27 02:26:40 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2022-01-13 20:21:56 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=5
|
2021-05-27 02:26:40 +02:00
|
|
|
|
2022-01-13 20:21:56 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-06-18 01:15:38 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2021-05-27 02:26:40 +02:00
|
|
|
|
2023-06-18 01:15:38 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R root:$admin "$install_dir"
|
|
|
|
chmod +x "$install_dir/bin/code-server"
|
2021-05-27 02:26:40 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2022-01-13 20:21:56 +01:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=5
|
2021-05-27 02:26:40 +02:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
# Use logrotate to manage application logfile(s)
|
|
|
|
ynh_use_logrotate
|
|
|
|
|
2023-06-18 01:15:38 +02:00
|
|
|
yunohost service add $app --description="VS Code Server" --log="/var/log/$app/$app.log"
|
|
|
|
|
2021-05-27 02:26:40 +02:00
|
|
|
#=================================================
|
2023-06-18 01:15:38 +02:00
|
|
|
# ADD A CONFIGURATION
|
2021-05-27 02:26:40 +02:00
|
|
|
#=================================================
|
2023-06-18 01:15:38 +02:00
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=2
|
2021-05-29 05:47:54 +02:00
|
|
|
|
2023-06-18 01:15:38 +02:00
|
|
|
ynh_add_config --template="config.yaml" --destination="$install_dir/config.yaml"
|
|
|
|
chmod 440 "$install_dir/config.yaml"
|
|
|
|
chown root:$admin "$install_dir/config.yaml"
|
|
|
|
|
|
|
|
ynh_add_config --template="code-server.env" --destination="$install_dir/code-server.env"
|
|
|
|
chmod 440 "$install_dir/code-server.env"
|
|
|
|
chown root:$admin "$install_dir/code-server.env"
|
2021-05-27 02:26:40 +02:00
|
|
|
|
|
|
|
#=================================================
|
2023-06-27 19:00:10 +02:00
|
|
|
# SET PERMISSION FOR THE USER
|
2021-05-27 02:26:40 +02:00
|
|
|
#=================================================
|
2023-06-27 19:00:10 +02:00
|
|
|
ynh_permission_update --permission="main" --add="$admin"
|
2021-05-27 02:26:40 +02:00
|
|
|
|
2023-06-27 19:00:10 +02:00
|
|
|
chown -R $admin:$admin "$data_dir"
|
2021-05-27 02:26:40 +02:00
|
|
|
|
|
|
|
#=================================================
|
2023-06-27 19:00:10 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2021-05-27 02:26:40 +02:00
|
|
|
#=================================================
|
2023-06-27 19:00:10 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2021-05-27 02:26:40 +02:00
|
|
|
|
2023-06-27 19:00:10 +02:00
|
|
|
# Start a systemd service
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
|
2021-05-27 02:26:40 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-05-29 05:47:54 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|