summaryrefslogtreecommitdiffstats
path: root/debian/tests/version
diff options
context:
space:
mode:
Diffstat (limited to 'debian/tests/version')
-rw-r--r--debian/tests/version18
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/tests/version b/debian/tests/version
new file mode 100644
index 0000000..67c93f2
--- /dev/null
+++ b/debian/tests/version
@@ -0,0 +1,18 @@
+#!/bin/bash
+#--------------------
+#Testing for correct version
+#--------------------
+
+set -e
+
+PACKAGE_VERSION="$(dpkg-parsechangelog -S Version |sed -ne 's/^\(\([0-9]\+\):\)\?\(.*\)-.*/\3/p' )"
+ICINGA_VERSION="$(icinga2 --version | grep version: | head -n1 | sed -e 's/.*version: r\([0-9.]\+\).*$/\1/')"
+
+if [ "$ICINGA_VERSION" = "$PACKAGE_VERSION" ]
+then
+ echo "OK: $ICINGA_VERSION is equal to $PACKAGE_VERSION"
+ exit 0
+else
+ echo "ERROR: $ICINGA_VERSION is not equal to $PACKAGE_VERSION"
+ exit 1
+fi