1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ntfy_ynh.git synced 2024-09-03 19:46:27 +02:00

Tune systemd start order in install script m(

This commit is contained in:
Alexander Wühr 2023-02-24 15:32:16 +01:00
parent bd945361c4
commit 4baf8d9087
No known key found for this signature in database
2 changed files with 10 additions and 10 deletions

View file

@ -9,18 +9,18 @@ ntfy_setup_source
ynh_script_progression -m "Adding configuration file..." -w 1
ynh_add_config -t "server.yml" -d "$install_dir/server.yml"
ynh_script_progression -m "Adding a command wrapper..." -w 1
ynh_add_config -t "ntfy.sh" -d "$install_dir/ntfy.sh"
chmod u+x "$install_dir/ntfy.sh"
ynh_script_progression -m "Configuring systemd service..." -w 1
ynh_add_systemd_config
ynh_script_progression -m "Starting systemd service..." -w 1
ynh_systemd_action -a start
ynh_script_progression -m "Integrating service in YunoHost..." -w 1
yunohost service add $app
ynh_script_progression -m "Starting systemd service..." -w 1
ynh_systemd_action -a start
ynh_script_progression -m "Adding a command wrapper..." -w 1
ynh_add_config -t "ntfy.sh" -d "$install_dir/ntfy.sh"
chmod u+x "$install_dir/ntfy.sh"
ynh_script_progression -m "Configuring web server..." -w 2
ynh_add_nginx_config

View file

@ -15,16 +15,16 @@ fi
ynh_script_progression -m "Updating configuration file..." -w 1
ynh_add_config -t "server.yml" -d "$install_dir/server.yml"
ynh_script_progression -m "Updating simple command wrapper..." -w 1
ynh_add_config -t "ntfy.sh" -d "$install_dir/ntfy.sh"
chmod u+x "$install_dir/ntfy.sh"
ynh_script_progression -m "Upgrading systemd configuration..." -w 1
ynh_add_systemd_config
ynh_script_progression -m "Integrating service in YunoHost..." -w 1
yunohost service add $app
ynh_script_progression -m "Updating simple command wrapper..." -w 1
ynh_add_config -t "ntfy.sh" -d "$install_dir/ntfy.sh"
chmod u+x "$install_dir/ntfy.sh"
ynh_script_progression -m "Upgrading web server configuration..." -w 2
ynh_add_nginx_config