Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Fix version autopkgtest.
· 139d8168
Bas Couwenberg
authored
May 08, 2018
139d8168
Set distribution to unstable.
· 84d10da5
Bas Couwenberg
authored
May 08, 2018
84d10da5
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
84d10da5
icinga2 (2.8.4-2) unstable; urgency=medium
* Team upload.
* Fix version autopkgtest.
-- Bas Couwenberg <sebastic@debian.org> Tue, 08 May 2018 08:18:35 +0200
icinga2 (2.8.4-1) unstable; urgency=medium
* Team upload.
...
...
debian/tests/version
View file @
84d10da5
...
...
@@ -6,7 +6,7 @@
set
-e
PACKAGE_VERSION
=
"
$(
dpkg-parsechangelog
-S
Version |sed
-ne
's/^\(\([0-9]\+\):\)\?\(.*\)-.*/\3/p'
)
"
ICINGA_VERSION
=
"
$(
icinga2
--version
|
head
-n1
|
sed
-e
's/.*version: r\([0-9.]\+\).*$/\1/'
)
"
ICINGA_VERSION
=
"
$(
icinga2
--version
|
grep
version: |
head
-n1
|
sed
-e
's/.*version: r\([0-9.]\+\).*$/\1/'
)
"
if
[
"
$ICINGA_VERSION
"
=
"
$PACKAGE_VERSION
"
]
then
...
...