From dc81971ebedd5067ba02767592cab55caaf72677 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Mon, 1 Jul 2024 00:12:44 +0200 Subject: [PATCH] Cleanup --- scripts/backup | 2 -- scripts/change_url | 2 -- scripts/install | 11 ++++------- scripts/remove | 2 -- scripts/restore | 2 -- scripts/upgrade | 6 ------ 6 files changed, 4 insertions(+), 21 deletions(-) diff --git a/scripts/backup b/scripts/backup index b32f7ce..715d768 100644 --- a/scripts/backup +++ b/scripts/backup @@ -1,7 +1,5 @@ #!/bin/bash -#================================================= -# GENERIC START #================================================= # IMPORT GENERIC HELPERS #================================================= diff --git a/scripts/change_url b/scripts/change_url index d0706b9..de0fe43 100644 --- a/scripts/change_url +++ b/scripts/change_url @@ -1,7 +1,5 @@ #!/bin/bash -#================================================= -# GENERIC STARTING #================================================= # IMPORT GENERIC HELPERS #================================================= diff --git a/scripts/install b/scripts/install index 42a9eef..9c69d43 100755 --- a/scripts/install +++ b/scripts/install @@ -1,7 +1,5 @@ #!/bin/bash -#================================================= -# GENERIC START #================================================= # IMPORT GENERIC HELPERS #================================================= @@ -37,8 +35,6 @@ mkdir -p "$install_dir/log" "$install_dir/tmp/pids" "$install_dir/tmp/sockets" chmod -R o-rwx "$install_dir" chown -R "$app:www-data" "$install_dir" -#================================================= -# SPECIFIC SETUP #================================================= # ADD A CONFIGURATION #================================================= @@ -57,7 +53,7 @@ ynh_script_progression --message="Building app..." pushd "$install_dir" ynh_use_ruby cp config/unicorn.rb.example config/unicorn.rb - chown -R $app:www-data "$install_dir/config/unicorn.rb" + chown -R "$app:www-data" "$install_dir/config/unicorn.rb" ynh_gem install rubygems-update -v 3.4 ynh_gem update --system --no-document ynh_gem install bundler -v 2.4.22 @@ -73,7 +69,7 @@ popd chmod 750 "$install_dir/public" chmod -R o-rwx "$install_dir/public" -chown -R $app:www-data "$install_dir/public" +chown -R "$app:www-data" "$install_dir/public" #================================================= # SYSTEM CONFIGURATION @@ -85,8 +81,9 @@ ynh_add_nginx_config # Create a dedicated systemd config ynh_add_systemd_config --service="$app-web" --template="web.service" -ynh_add_systemd_config --service="$app-jobs" --template="jobs.service" yunohost service add "$app-web" --log="$install_dir/log/unicorn.log" + +ynh_add_systemd_config --service="$app-jobs" --template="jobs.service" yunohost service add "$app-jobs" --log="$install_dir/log/production.log" #================================================= diff --git a/scripts/remove b/scripts/remove index 9ae75f8..8318576 100755 --- a/scripts/remove +++ b/scripts/remove @@ -1,7 +1,5 @@ #!/bin/bash -#================================================= -# GENERIC START #================================================= # IMPORT GENERIC HELPERS #================================================= diff --git a/scripts/restore b/scripts/restore index 3591f53..25dd100 100644 --- a/scripts/restore +++ b/scripts/restore @@ -1,7 +1,5 @@ #!/bin/bash -#================================================= -# GENERIC START #================================================= # IMPORT GENERIC HELPERS #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 563726c..8d6991d 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -1,7 +1,5 @@ #!/bin/bash -#================================================= -# GENERIC START #================================================= # IMPORT GENERIC HELPERS #================================================= @@ -9,8 +7,6 @@ source _common.sh source /usr/share/yunohost/helpers -#================================================= -# STANDARD UPGRADE STEPS #================================================= # STOP SYSTEMD SERVICE #================================================= @@ -38,8 +34,6 @@ mkdir -p "$install_dir/log" "$install_dir/tmp/pids" "$install_dir/tmp/sockets" chmod -R o-rwx "$install_dir" chown -R "$app:www-data" "$install_dir" -#================================================= -# SPECIFIC UPGRADE #================================================= # UPDATE A CONFIG FILE #=================================================