20090814+nmu2 (patches unapplied)

Imported using git-ubuntu import.
This commit is contained in:
Maximiliano Curia 2010-08-13 20:16:21 -03:00 committed by git-ubuntu importer
parent 3076e4e304
commit 07c964b780
Notes: git-ubuntu importer 2020-07-14 23:25:09 +00:00
  * Non-maintainer upload.
  * Fixes buggy shell functions included in the postinst script.
    (Closes: #591607)
2 changed files with 10 additions and 2 deletions

8
debian/changelog vendored
View file

@ -1,3 +1,11 @@
ca-certificates (20090814+nmu2) unstable; urgency=low
* Non-maintainer upload.
* Fixes buggy shell functions included in the postinst script.
(Closes: #591607)
-- Maximiliano Curia <maxy@debian.org> Fri, 13 Aug 2010 20:16:21 -0300
ca-certificates (20090814+nmu1) unstable; urgency=low
* Non-maintainer upload.

4
debian/postinst vendored
View file

@ -21,13 +21,13 @@
# `abort-remove' or `abort-deconfigure'.
each_value() {
echo "$l" |tr ',' '\n' | sed -e 's/^[[:space:]]*//'
echo "$1" |tr ',' '\n' | sed -e 's/^[[:space:]]*//'
}
memberp() {
m="$1"
l="$2"
each_value "$1" | grep -q "^$m\$"
each_value "$l" | grep -q "^$m\$"
}
delca() {