1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/code-server_ynh.git synced 2024-09-03 18:16:28 +02:00
code-server_ynh/scripts/install

169 lines
5.6 KiB
Text
Raw Normal View History

2021-05-27 02:26:40 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
true
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
domain=$YNH_APP_ARG_DOMAIN
admin=$YNH_APP_ARG_ADMIN
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Validating installation parameters..." --weight=1
final_path=/opt/yunohost/$app
2021-05-27 02:26:40 +02:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
# Register (book) web path
2022-01-13 20:21:56 +01:00
ynh_webpath_register --app=$app --domain=$domain --path_url="/"
2021-05-27 02:26:40 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2022-01-13 20:21:56 +01:00
ynh_script_progression --message="Storing installation settings..." --weight=2
2021-05-27 02:26:40 +02:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=admin --value=$admin
#=================================================
# STANDARD MODIFICATIONS
#=================================================
# FIND AND OPEN A PORT
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Finding an available port..." --weight=1
2021-05-27 02:26:40 +02:00
# Find an available port
2022-01-13 20:21:56 +01:00
port=$(ynh_find_port --port=8095)
2021-05-27 02:26:40 +02:00
ynh_app_setting_set --app=$app --key=port --value=$port
#=================================================
# 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
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2022-01-13 20:21:56 +01:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path" --source_id="$YNH_ARCH"
2021-05-27 02:26:40 +02:00
2022-01-13 20:21:56 +01:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R root:$admin "$final_path"
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
#=================================================
# SPECIFIC SETUP
#=================================================
2022-01-13 20:21:56 +01:00
# ...
2021-05-27 02:26:40 +02:00
#=================================================
2021-05-29 05:47:54 +02:00
2022-01-13 20:21:56 +01:00
#=================================================
# CREATE DATA DIRECTORY
#=================================================
ynh_script_progression --message="Creating a data directory..." --weight=2
datadir=/home/yunohost.app/$app
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
mkdir -p $datadir/{user-data,extensions}
chmod 750 "$datadir"
chmod -R o-rwx "$datadir"
chown -R $admin:$admin "$datadir"
2021-05-27 02:26:40 +02:00
#=================================================
2022-01-13 20:21:56 +01:00
# ADD A CONFIGURATION
2021-05-27 02:26:40 +02:00
#=================================================
2022-01-13 20:21:56 +01:00
ynh_script_progression --message="Adding a configuration file..." --weight=2
2021-05-27 02:26:40 +02:00
2022-01-13 20:21:56 +01:00
ynh_add_config --template="config.yaml" --destination="$final_path/config.yaml"
chmod 440 "$final_path/config.yaml"
chown root:$admin "$final_path/config.yaml"
ynh_add_config --template="code-server.env" --destination="$final_path/code-server.env"
chmod 440 "$final_path/code-server.env"
chown root:$admin "$final_path/code-server.env"
2021-05-27 02:26:40 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2022-01-13 20:21:56 +01:00
ynh_script_progression --message="Configuring a systemd service..." --weight=2
2021-05-27 02:26:40 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
2022-01-13 20:21:56 +01:00
ynh_script_progression --message="Configuring log rotation..." --weight=2
2021-05-27 02:26:40 +02:00
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2022-01-13 20:21:56 +01:00
yunohost service add $app --description="VS Code Server" --log="/var/log/$app/$app.log"
2021-05-27 02:26:40 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-05-27 02:26:40 +02:00
# Start a systemd service
2022-01-13 20:21:56 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
2021-05-27 02:26:40 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Configuring permissions..." --weight=1
2021-05-27 02:26:40 +02:00
2022-01-13 20:21:56 +01:00
ynh_permission_update --permission="main" --remove="all_users"
ynh_permission_update --permission="main" --add=$admin
2021-05-27 02:26:40 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2022-01-13 20:21:56 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=2
2021-05-27 02:26:40 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2021-05-29 05:47:54 +02:00
ynh_script_progression --message="Installation of $app completed" --last