diff --git a/CHANGELOG.md b/CHANGELOG.md index 5777b2f..621b231 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ### __[v2.2.2]__ - unreleased ##### Added +- Installations Script für Services [#316](https://github.com/Schrolli91/BOSWatch/pull/316) ##### Changed - Telegram Plugin importiert Google Maps Funktionen nur noch wenn API Key eingetragen ist [#315](https://github.com/Schrolli91/BOSWatch/pull/315) ##### Deprecated diff --git a/service/install_service.sh b/service/install_service.sh index d973b5a..1ec6c7e 100644 --- a/service/install_service.sh +++ b/service/install_service.sh @@ -13,9 +13,9 @@ read -p"Do you want to install (i) or remove (r) the service? " action if [ "$action" == "i" ]; then # 1 Check whether the right data are in the service-file - + read -p"Did you adapt the file boswatch.service (y/n)? " response - + if [ "$response" == "y" ]; then # 2 Copy the file cp boswatch.service /etc/systemd/system @@ -36,7 +36,7 @@ if [ "$action" == "i" ]; then else # we want to remove the service # stop it... systemctl stop boswatch.service - + # disable it systemctl disable boswatch.service