#!/bin/bash #================================================= # GENERIC START #================================================= # IMPORT GENERIC HELPERS #================================================= source _common.sh source /usr/share/yunohost/helpers #================================================= # RETRIEVE ARGUMENTS FROM THE MANIFEST #================================================= auth="none" ynh_app_setting_set --app=$app --key=auth --value=$auth #================================================= # DOWNLOAD, CHECK AND UNPACK SOURCE #================================================= ynh_script_progression --message="Setting up source files..." --weight=5 # Download, check integrity, uncompress and patch the source from app.src ynh_setup_source --dest_dir="$install_dir" chmod -R o-rwx "$install_dir" chown -R root:$admin "$install_dir" chmod +x "$install_dir/bin/code-server" #================================================= # NGINX CONFIGURATION #================================================= ynh_script_progression --message="Configuring NGINX web server..." --weight=5 # 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 yunohost service add $app --description="VS Code Server" --log="/var/log/$app/$app.log" #================================================= # ADD A CONFIGURATION #================================================= ynh_script_progression --message="Adding a configuration file..." --weight=2 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" #================================================= # SET PERMISSION FOR THE USER #================================================= ynh_permission_update --permission="main" --add="$admin" chown -R $admin:$admin "$data_dir" #================================================= # START SYSTEMD SERVICE #================================================= ynh_script_progression --message="Starting a systemd service..." --weight=1 # Start a systemd service ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log" #================================================= # END OF SCRIPT #================================================= ynh_script_progression --message="Installation of $app completed" --last