Your message dated Sat, 21 Dec 2024 21:56:17 +0100
with message-id <[email protected]>
and subject line Re: mpich: maintainer scripts assume #DEBHELPER# only
sometimes does something
has caused the Debian Bug report #715286,
regarding mpich: maintainer scripts assume #DEBHELPER# only sometimes does
something
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 [email protected]
immediately.)
--
715286: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=715286
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: mpich
Version: 1.2.7-10
Several maintainer scripts in mpich follow this pattern:
----
#!/bin/sh
set -e
case "$1" in
configure)
# Continue below
;;
abort-upgrade|abort-remove|abort-deconfigure)
exit 0;
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 0;
;;
esac
[do-something]
#DEBHELPER#
----
This assumes that #DEBHELPER# will only ever do something when the
maintainer script is called with $1 = configure.
They should probably follow
----
#!/bin/sh
set -e
if [ "$1" = configure ]; then
[do-something]
fi
#DEBHELPER#
----
Ansgar
--- End Message ---
--- Begin Message ---
Version: 3.3-3
On Sun, 07 Jul 2013 18:05:40 +0200 Ansgar Burchardt <[email protected]>
wrote:
Source: mpich
Version: 1.2.7-10
Several maintainer scripts in mpich follow this pattern:
abort-upgrade|abort-remove|abort-deconfigure)
exit 0;
;;
The superfluous exits are gone at least since 3.3-3
Andreas
--- End Message ---
--
debian-science-maintainers mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-science-maintainers