From db8f4abc1b9339b1d9a1642dce90bcd20654bbdc Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Fri, 27 Jun 2014 12:21:11 +0200 Subject: [PATCH] Add documentation for || and && fixes #6592 --- doc/6-configuring-icinga-2.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/6-configuring-icinga-2.md b/doc/6-configuring-icinga-2.md index b6fbf4b2c..47d0406c5 100644 --- a/doc/6-configuring-icinga-2.md +++ b/doc/6-configuring-icinga-2.md @@ -190,6 +190,8 @@ Operator | Examples (Result) | Description / | 5m / 5 (60) | Divides two numbers & | 7 & 3 (3) | Binary AND | | 2 | 3 (3) | Binary OR +&& | true && false (false) | Logical AND +|| | true || false (true) | Logical OR < | 3 < 5 (true) | Less than > | 3 > 5 (false) | Greater than <= | 3 <= 3 (true) | Less than or equal