This commit is contained in:
Bastian Schroll 2017-10-03 08:50:11 +02:00
parent d248a7d45d
commit eacb72adea
2 changed files with 4 additions and 3 deletions

View file

@ -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

View file

@ -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