diff --git a/conf/systemd.service b/conf/systemd.service index 8050ae1..a1b91b8 100644 --- a/conf/systemd.service +++ b/conf/systemd.service @@ -6,7 +6,7 @@ Type=simple User=__APP__ Group=__APP__ WorkingDirectory=__INSTALL_DIR__/ -ExecStart=__INSTALL_DIR__/venv/bin/python3 __INSTALL_DIR__/Headphones.py --config /etc/__APP__/__APP__.ini --datadir __DATA_DIR__ --nolaunch +ExecStart=__INSTALL_DIR__/venv/bin/python3 __INSTALL_DIR__/Headphones.py --config /etc/__APP__/headphones.ini --datadir __DATA_DIR__ --nolaunch # Sandboxing options to harden security # Depending on specificities of your service/app, you may need to tweak these diff --git a/scripts/change_url b/scripts/change_url index b40e132..740c329 100644 --- a/scripts/change_url +++ b/scripts/change_url @@ -34,10 +34,10 @@ ynh_script_progression --message="Updating a configuration file..." path=$new_path domain=$new_domain -ynh_add_config --template="../conf/headphones.ini" --destination="/etc/$app/$app.ini" +ynh_add_config --template="../conf/headphones.ini" --destination="/etc/$app/headphones.ini" -chmod 600 "/etc/$app/$app.ini" -chown $app:$app "/etc/$app/$app.ini" +chmod 600 "/etc/$app/headphones.ini" +chown $app:$app "/etc/$app/headphones.ini" #================================================= # GENERIC FINALISATION diff --git a/scripts/install b/scripts/install index 0464df4..45dd356 100644 --- a/scripts/install +++ b/scripts/install @@ -44,10 +44,10 @@ python3 -m venv $install_dir/venv ynh_script_progression --message="Adding a configuration file..." mkdir -p "/etc/$app" -ynh_add_config --template="../conf/headphones.ini" --destination="/etc/$app/$app.ini" +ynh_add_config --template="../conf/headphones.ini" --destination="/etc/$app/headphones.ini" -chmod 600 "/etc/$app/$app.ini" -chown $app:$app "/etc/$app/$app.ini" +chmod 600 "/etc/$app/headphones.ini" +chown $app:$app "/etc/$app/headphones.ini" #================================================= # SETUP SYSTEMD diff --git a/scripts/restore b/scripts/restore index 80581d9..981394c 100644 --- a/scripts/restore +++ b/scripts/restore @@ -47,8 +47,8 @@ ynh_script_progression --message="Restoring various files..." ynh_restore_file --origin_path="/etc/$app/" -chmod 600 "/etc/$app/$app.ini" -chown $app:$app "/etc/$app/$app.ini" +chmod 600 "/etc/$app/headphones.ini" +chown $app:$app "/etc/$app/headphones.ini" #================================================= # RESTORE SYSTEMD diff --git a/scripts/upgrade b/scripts/upgrade index 94a4cab..f43c46d 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -64,10 +64,10 @@ python3 -m venv $install_dir/venv ynh_script_progression --message="Updating a configuration file..." mkdir -p "/etc/$app" -ynh_add_config --template="../conf/headphones.ini" --destination="/etc/$app/$app.ini" +ynh_add_config --template="../conf/headphones.ini" --destination="/etc/$app/headphones.ini" -chmod 600 "/etc/$app/$app.ini" -chown $app:$app "/etc/$app/$app.ini" +chmod 600 "/etc/$app/headphones.ini" +chown $app:$app "/etc/$app/headphones.ini" #================================================= # SETUP SYSTEMD