[Pkg-freeipa-devel] freeipa: Changes to 'master'

Timo Aaltonen tjaalton at moszumanska.debian.org
Wed Mar 4 13:04:50 UTC 2015


 debian/changelog               |    9 +++++++++
 debian/freeipa-client.postinst |    2 +-
 debian/freeipa-client.postrm   |    4 ++++
 debian/rules                   |    2 ++
 4 files changed, 16 insertions(+), 1 deletion(-)

New commits:
commit 997da94cd05930bc447fcd972c8c78b8a5d55ab5
Author: Timo Aaltonen <tjaalton at debian.org>
Date:   Wed Mar 4 14:52:46 2015 +0200

    releasing package freeipa version 4.0.5-3

diff --git a/debian/changelog b/debian/changelog
index f4faea5..3f7c596 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,11 @@
-freeipa (4.0.5-3) UNRELEASED; urgency=medium
+freeipa (4.0.5-3) unstable; urgency=medium
 
   * rules: Set JAVA_STACK_SIZE to hopefully avoid FTBFS on exotic archs.
   * freeipa-client.postrm: Remove nssdb files on purge. (Closes:
     #775387)
   * freeipa-client.postinst: Fix bashism with echo. (Closes: #772242)
 
- -- Timo Aaltonen <tjaalton at debian.org>  Wed, 04 Mar 2015 12:11:12 +0200
+ -- Timo Aaltonen <tjaalton at debian.org>  Wed, 04 Mar 2015 14:51:35 +0200
 
 freeipa (4.0.5-2) unstable; urgency=medium
 

commit 122e36a6b452ca4e6e9c5df25c613c35215d8fce
Author: Timo Aaltonen <tjaalton at debian.org>
Date:   Wed Mar 4 14:35:20 2015 +0200

    fix stack size env typo

diff --git a/debian/rules b/debian/rules
index a64326a..182d5c3 100755
--- a/debian/rules
+++ b/debian/rules
@@ -7,7 +7,7 @@ ONLY_CLIENT=0
 DESTDIR=$(CURDIR)/debian/tmp
 
 PLATFORM="SUPPORTED_PLATFORM=debian"
-JAVA_STACK_SIZE ?= "8m"
+JAVA_STACK_SIZE ?= 8m
 export JAVA_STACK_SIZE
 
 # For maintainer use only, generate a tarball:

commit a935b07a70d5f2c8495f08e8fb290e2e76d1faf3
Author: Timo Aaltonen <tjaalton at debian.org>
Date:   Wed Mar 4 12:27:33 2015 +0200

    freeipa-client.postinst: Fix bashism with echo. (Closes: #772242)

diff --git a/debian/changelog b/debian/changelog
index 4a3f285..f4faea5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ freeipa (4.0.5-3) UNRELEASED; urgency=medium
   * rules: Set JAVA_STACK_SIZE to hopefully avoid FTBFS on exotic archs.
   * freeipa-client.postrm: Remove nssdb files on purge. (Closes:
     #775387)
+  * freeipa-client.postinst: Fix bashism with echo. (Closes: #772242)
 
  -- Timo Aaltonen <tjaalton at debian.org>  Wed, 04 Mar 2015 12:11:12 +0200
 
diff --git a/debian/freeipa-client.postinst b/debian/freeipa-client.postinst
index b071a34..4451c34 100644
--- a/debian/freeipa-client.postinst
+++ b/debian/freeipa-client.postinst
@@ -4,7 +4,7 @@ set -e
 if [ "$1" = configure ]; then
     if [ ! -e /etc/pki/nssdb ]; then
         tmp=$(mktemp) || exit
-        echo "\n" > $tmp
+        printf "\n" > $tmp
         mkdir -p /etc/pki/nssdb
         certutil -N -d /etc/pki/nssdb -f $tmp
         chmod 644 /etc/pki/nssdb/*

commit d80f5e30467c02a749cd6e67f0c2302f7bf1df3f
Author: Timo Aaltonen <tjaalton at debian.org>
Date:   Wed Mar 4 12:17:56 2015 +0200

    freeipa-client.postrm: Remove nssdb files on purge. (Closes: #775387)

diff --git a/debian/changelog b/debian/changelog
index bc342ff..4a3f285 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
 freeipa (4.0.5-3) UNRELEASED; urgency=medium
 
   * rules: Set JAVA_STACK_SIZE to hopefully avoid FTBFS on exotic archs.
+  * freeipa-client.postrm: Remove nssdb files on purge. (Closes:
+    #775387)
 
  -- Timo Aaltonen <tjaalton at debian.org>  Wed, 04 Mar 2015 12:11:12 +0200
 
diff --git a/debian/freeipa-client.postrm b/debian/freeipa-client.postrm
index 40ef054..678ff10 100644
--- a/debian/freeipa-client.postrm
+++ b/debian/freeipa-client.postrm
@@ -4,6 +4,10 @@ set -e
 if [ "$1" = purge ]; then
     rm -rf /var/lib/ipa-client
     rm -f /etc/ipa/default.conf
+    rm -f /etc/pki/nssdb/cert8.db \
+          /etc/pki/nssdb/key3.db \
+          /etc/pki/nssdb/secmod.db
+    rmdir /etc/pki/nssdb
 fi
 
 #DEBHELPER#

commit d6095cbb021319c3c7339f6b0dc3a3307ba97a6a
Author: Timo Aaltonen <tjaalton at debian.org>
Date:   Wed Mar 4 12:11:27 2015 +0200

    rules: Set JAVA_STACK_SIZE to hopefully avoid FTBFS on exotic archs.

diff --git a/debian/changelog b/debian/changelog
index 55eb3fd..bc342ff 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+freeipa (4.0.5-3) UNRELEASED; urgency=medium
+
+  * rules: Set JAVA_STACK_SIZE to hopefully avoid FTBFS on exotic archs.
+
+ -- Timo Aaltonen <tjaalton at debian.org>  Wed, 04 Mar 2015 12:11:12 +0200
+
 freeipa (4.0.5-2) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/rules b/debian/rules
index e790c6c..a64326a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -7,6 +7,8 @@ ONLY_CLIENT=0
 DESTDIR=$(CURDIR)/debian/tmp
 
 PLATFORM="SUPPORTED_PLATFORM=debian"
+JAVA_STACK_SIZE ?= "8m"
+export JAVA_STACK_SIZE
 
 # For maintainer use only, generate a tarball:
 SOURCE = freeipa



More information about the Pkg-freeipa-devel mailing list