Your message dated Wed, 7 Jan 2015 18:01:39 +0000
with message-id <20150107180139.gr10...@lupin.home.powdarrmonkey.net>
and subject line Re: Bug#774778: unblock: keystone/2014.1.3-5
has caused the Debian Bug report #774778,
regarding unblock: keystone/2014.1.3-5
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
774778: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=774778
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian....@packages.debian.org
Usertags: unblock

Please unblock package keystone. It contains the below fixes:

* Fix cron job to not error after package removal (Closes: #773494), by
checking if keystone-manage is available in /usr/bin and executable.

* Rebuild against openstack-pkg-tools >= 21~ to fix sysv-rc script.

Please unblock keystone/2014.1.3-5.

Cheers,

Thomas Goirand (zigo)
diff -Nru keystone-2014.1.3/debian/changelog keystone-2014.1.3/debian/changelog
--- keystone-2014.1.3/debian/changelog	2014-12-18 11:07:23.000000000 +0000
+++ keystone-2014.1.3/debian/changelog	2015-01-06 20:27:39.000000000 +0000
@@ -1,3 +1,10 @@
+keystone (2014.1.3-5) unstable; urgency=medium
+
+  * Fix cron job to not error after package removal (Closes: #773494).
+  * Rebuild against openstack-pkg-tools >= 21~ to fix sysv-rc script.
+
+ -- Thomas Goirand <z...@debian.org>  Tue, 06 Jan 2015 20:23:24 +0000
+
 keystone (2014.1.3-4) unstable; urgency=medium
 
   * Manually activates keystone.service since we're not using #DEBHELPER#.
diff -Nru keystone-2014.1.3/debian/control keystone-2014.1.3/debian/control
--- keystone-2014.1.3/debian/control	2014-12-18 11:07:23.000000000 +0000
+++ keystone-2014.1.3/debian/control	2015-01-06 20:27:39.000000000 +0000
@@ -7,7 +7,7 @@
            Mehdi Abaakouk <sil...@sileht.net>
 Build-Depends: debhelper (>= 9),
                dh-systemd,
-               openstack-pkg-tools (>= 20~),
+               openstack-pkg-tools (>= 21~),
                po-debconf,
                python-all (>= 2.6.6-3~),
                python-pbr (>= 0.6),
diff -Nru keystone-2014.1.3/debian/keystone.cron.hourly keystone-2014.1.3/debian/keystone.cron.hourly
--- keystone-2014.1.3/debian/keystone.cron.hourly	2014-12-18 11:07:23.000000000 +0000
+++ keystone-2014.1.3/debian/keystone.cron.hourly	2015-01-06 20:27:39.000000000 +0000
@@ -2,4 +2,6 @@
 
 set -e
 
-su -c '/usr/bin/keystone-manage token_flush >/var/log/keystone/keystone-tokenflush.log 2>&1' keystone
+if [ -x /usr/bin/keystone-manage ] ; then
+	su -c '/usr/bin/keystone-manage token_flush >/var/log/keystone/keystone-tokenflush.log 2>&1' keystone
+fi

--- End Message ---
--- Begin Message ---
On Wed, Jan 07, 2015 at 03:20:10PM +0100, Thomas Goirand wrote:
> Package: release.debian.org
> Severity: normal
> User: release.debian....@packages.debian.org
> Usertags: unblock
> 
> Please unblock package keystone. It contains the below fixes:
> 
> * Fix cron job to not error after package removal (Closes: #773494), by
> checking if keystone-manage is available in /usr/bin and executable.
> 
> * Rebuild against openstack-pkg-tools >= 21~ to fix sysv-rc script.
> 
> Please unblock keystone/2014.1.3-5.
> 
> Cheers,
> 
> Thomas Goirand (zigo)

> diff -Nru keystone-2014.1.3/debian/changelog 
> keystone-2014.1.3/debian/changelog
> --- keystone-2014.1.3/debian/changelog        2014-12-18 11:07:23.000000000 
> +0000
> +++ keystone-2014.1.3/debian/changelog        2015-01-06 20:27:39.000000000 
> +0000
> @@ -1,3 +1,10 @@
> +keystone (2014.1.3-5) unstable; urgency=medium
> +
> +  * Fix cron job to not error after package removal (Closes: #773494).
> +  * Rebuild against openstack-pkg-tools >= 21~ to fix sysv-rc script.
> +
> + -- Thomas Goirand <z...@debian.org>  Tue, 06 Jan 2015 20:23:24 +0000
> +
>  keystone (2014.1.3-4) unstable; urgency=medium
>  
>    * Manually activates keystone.service since we're not using #DEBHELPER#.
> diff -Nru keystone-2014.1.3/debian/control keystone-2014.1.3/debian/control
> --- keystone-2014.1.3/debian/control  2014-12-18 11:07:23.000000000 +0000
> +++ keystone-2014.1.3/debian/control  2015-01-06 20:27:39.000000000 +0000
> @@ -7,7 +7,7 @@
>             Mehdi Abaakouk <sil...@sileht.net>
>  Build-Depends: debhelper (>= 9),
>                 dh-systemd,
> -               openstack-pkg-tools (>= 20~),
> +               openstack-pkg-tools (>= 21~),
>                 po-debconf,
>                 python-all (>= 2.6.6-3~),
>                 python-pbr (>= 0.6),
> diff -Nru keystone-2014.1.3/debian/keystone.cron.hourly 
> keystone-2014.1.3/debian/keystone.cron.hourly
> --- keystone-2014.1.3/debian/keystone.cron.hourly     2014-12-18 
> 11:07:23.000000000 +0000
> +++ keystone-2014.1.3/debian/keystone.cron.hourly     2015-01-06 
> 20:27:39.000000000 +0000
> @@ -2,4 +2,6 @@
>  
>  set -e
>  
> -su -c '/usr/bin/keystone-manage token_flush 
> >/var/log/keystone/keystone-tokenflush.log 2>&1' keystone
> +if [ -x /usr/bin/keystone-manage ] ; then
> +     su -c '/usr/bin/keystone-manage token_flush 
> >/var/log/keystone/keystone-tokenflush.log 2>&1' keystone
> +fi


-- 
Jonathan Wiltshire                                      j...@debian.org
Debian Developer                         http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51

Attachment: signature.asc
Description: Digital signature


--- End Message ---

Reply via email to