Skip to content

Commit

Permalink
Bugfix unary operator
Browse files Browse the repository at this point in the history
  • Loading branch information
filipnet committed Sep 9, 2021
1 parent 77da155 commit 8cd6b7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ fi

## TROUBLESHOOTING
For more details and troubleshooting with parameters please check:

* Check_MK notification logfile: /omd/sites/{sitename}/var/log/notify.log
* [Check_MK Manual > Notifications > Chapter: 11.3. A simple example](https://docs.checkmk.com/latest/en/notifications.html#H1:Real)
* [[Feature-Request] Multiple Alert Profiles](https://github.com/filipnet/checkmk-telegram-notify/issues/3)

Expand Down
2 changes: 1 addition & 1 deletion check_mk_telegram-notify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ else
fi

# Privacy settings to anonymize/masking IP addresses
if [ ${NOTIFY_PARAMETER_3} = "privacy" ]; then
if [[ ${NOTIFY_PARAMETER_3} == "privacy" ]]; then
# IPv4 IP addresses
if [ ${NOTIFY_HOST_ADDRESS_4} ]; then
slice="${NOTIFY_HOST_ADDRESS_4}"
Expand Down

0 comments on commit 8cd6b7c

Please sign in to comment.