diff options
Diffstat (limited to 'debian/tests')
-rw-r--r-- | debian/tests/control | 3 | ||||
-rw-r--r-- | debian/tests/version | 18 |
2 files changed, 21 insertions, 0 deletions
diff --git a/debian/tests/control b/debian/tests/control new file mode 100644 index 0000000..4cb0e7a --- /dev/null +++ b/debian/tests/control @@ -0,0 +1,3 @@ +Tests: version +Restrictions: needs-root, superficial +Depends: icinga2, icinga2-bin, icinga2-common 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 |