diffstat for nagios-nrpe-3.2.1 nagios-nrpe-3.2.1 changelog | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ control | 3 ++- rules | 3 ++- 3 files changed, 62 insertions(+), 2 deletions(-) diff -Nru nagios-nrpe-3.2.1/debian/changelog nagios-nrpe-3.2.1/debian/changelog --- nagios-nrpe-3.2.1/debian/changelog 2017-09-03 08:52:40.000000000 +0000 +++ nagios-nrpe-3.2.1/debian/changelog 2018-02-10 20:12:25.000000000 +0000 @@ -1,3 +1,20 @@ +nagios-nrpe (3.2.1-1ubuntu1) bionic; urgency=medium + + * Merge with Debian unstable. Remaining changes: + - debian/rules : Add "--enable-command-args". (LP #1555258) This + update enables the command-args support in nrpe by not ignoring + option "dont_blame_nrpe=1". By default, the option is set as + follow : "dont_blame_nrpe=0", which has the same effect of having + the command-args support disabled at compile time like Debian + does. Ubuntu has decided to deviate from Debian upstream for that + particular case to allow/unblock the Ubuntu users of nrpe to make + the choice for themselves whether to accept the security risks + that the feature involve by manually enabling command-args in + nrpe.cfg or not. For more details as of why Debian has decided to + disable the feature can be found in debian/NEWS. (closes #756479) + + -- Dimitri John Ledkov Sat, 10 Feb 2018 20:12:25 +0000 + nagios-nrpe (3.2.1-1) unstable; urgency=medium * New upstream release. @@ -5,6 +22,30 @@ -- Bas Couwenberg Sun, 03 Sep 2017 10:52:40 +0200 +nagios-nrpe (3.2.0-4ubuntu2) artful; urgency=medium + + * Update 11_reproducible_dh.h.patch to build with libssl 1.0.x + (LP: #1715167) + + -- Balint Reczey Tue, 05 Sep 2017 14:26:58 +0000 + +nagios-nrpe (3.2.0-4ubuntu1) artful; urgency=medium + + * Merge with Debian unstable. Remaining changes: + - debian/rules : Add "--enable-command-args". (LP #1555258) This + update enables the command-args support in nrpe by not ignoring + option "dont_blame_nrpe=1". By default, the option is set as + follow : "dont_blame_nrpe=0", which has the same effect of having + the command-args support disabled at compile time like Debian + does. Ubuntu has decided to deviate from Debian upstream for that + particular case to allow/unblock the Ubuntu users of nrpe to make + the choice for themselves whether to accept the security risks + that the feature involve by manually enabling command-args in + nrpe.cfg or not. For more details as of why Debian has decided to + disable the feature can be found in debian/NEWS. (closes #756479) + + -- Nishanth Aravamudan Thu, 10 Aug 2017 16:51:24 -0700 + nagios-nrpe (3.2.0-4) unstable; urgency=medium * Add upstream patch to turn seteuid errors into warnings. @@ -72,6 +113,23 @@ -- Bas Couwenberg Wed, 19 Apr 2017 19:28:05 +0200 +nagios-nrpe (3.0.1-3ubuntu1) artful; urgency=medium + + * debian/rules : Add "--enable-command-args". (LP: #1555258) + This update enables the command-args support in nrpe + by not ignoring option "dont_blame_nrpe=1". By default, + the option is set as follow : "dont_blame_nrpe=0", which + has the same effect of having the command-args support + disabled at compile time like Debian does. Ubuntu has decided + to deviate from Debian upstream for that particular case to + allow/unblock the Ubuntu users of nrpe to make the choice for + themselves whether to accept the security risks that the feature + involve by manually enabling command-args in nrpe.cfg or not. + For more details as of why Debian has decided to disable the + feature can be found in debian/NEWS. (closes: #756479) + + -- Eric Desrochers Tue, 02 May 2017 08:32:36 -0400 + nagios-nrpe (3.0.1-3) unstable; urgency=medium * Add reload command to systemd service file. diff -Nru nagios-nrpe-3.2.1/debian/control nagios-nrpe-3.2.1/debian/control --- nagios-nrpe-3.2.1/debian/control 2017-09-03 08:52:38.000000000 +0000 +++ nagios-nrpe-3.2.1/debian/control 2018-02-10 20:12:21.000000000 +0000 @@ -1,5 +1,6 @@ Source: nagios-nrpe -Maintainer: Debian Nagios Maintainer Group +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Debian Nagios Maintainer Group Uploaders: Bas Couwenberg Section: net Priority: optional diff -Nru nagios-nrpe-3.2.1/debian/rules nagios-nrpe-3.2.1/debian/rules --- nagios-nrpe-3.2.1/debian/rules 2017-07-12 05:18:51.000000000 +0000 +++ nagios-nrpe-3.2.1/debian/rules 2018-02-10 20:12:21.000000000 +0000 @@ -23,7 +23,8 @@ --enable-ssl \ --with-logdir=/var/log \ --with-ssl-lib=/usr/lib/$(DEB_HOST_MULTIARCH) \ - --with-piddir=/var/run/nagios + --with-piddir=/var/run/nagios \ + --enable-command-args override_dh_auto_build: dh_auto_build -- all