#!/bin/bash #================================================= # GENERIC START #================================================= # IMPORT GENERIC HELPERS #================================================= source _common.sh source /usr/share/yunohost/helpers #================================================= # INSTALL DEPENDENCIES #================================================= ynh_script_progression --message="Installing NodeJS..." --weight=23 ynh_install_nodejs --nodejs_version="$NODEJS_VERSION" ynh_use_nodejs #================================================= # SPECIFIC SETUP #================================================= # INSTALL ARMADIETTO #================================================= ynh_script_progression --message="Install armadietto with npm..." --weight=1 pushd "$install_dir" upstream_version=$(ynh_app_upstream_version) ynh_npm -g i "armadietto@$upstream_version" popd chmod 750 "$install_dir" chmod -R o-rwx "$install_dir" chown -R "$app:$app" "$install_dir" chmod -R o-rwx "$data_dir" chown -R "$app:$app" "$data_dir" #================================================= # ADD A CONFIGURATION #================================================= ynh_script_progression --message="Adding a configuration file..." --weight=2 # Define armadietto module path module_path="$node_version_path/$nodejs_version/lib/node_modules/armadietto/lib" ynh_add_config --template="../conf/server.js" --destination="$install_dir/server.js" chmod 400 "$install_dir/server.js" chown $app:$app "$install_dir/server.js" #================================================= # SYSTEM CONFIGURATION #================================================= ynh_script_progression --message="Adding system configurations related to $app..." --weight=1 # Create a dedicated NGINX config ynh_add_nginx_config # Create a dedicated systemd config ynh_add_systemd_config yunohost service add $app --description="Armadietto run a remotestorage server as service" --log="/var/log/$app/$app.log" # Use logrotate to manage application logfile(s) ynh_use_logrotate #================================================= # 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