aboutsummaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog5
-rw-r--r--debian/control3
-rw-r--r--debian/postinst7
3 files changed, 9 insertions, 6 deletions
diff --git a/debian/changelog b/debian/changelog
index c820b65..5f36cc5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,10 @@
-naskpass (1.1-0) UNRELEASED; urgency=low
+naskpass (1.1-1) UNRELEASED; urgency=low
* UI rewritten
* maintainer scripts/configs renewed
+ * working initrd script
- -- Toni Uhlig <matzeton@googlemail.com> Thu, 25 Dec 2014 03:32:43 +0100
+ -- Toni Uhlig <matzeton@googlemail.com> Sat, 07 Feb 2015 03:43:50 +0100
naskpass (1.0-3) unstable; urgency=low
diff --git a/debian/control b/debian/control
index 6956421..d85a5ec 100644
--- a/debian/control
+++ b/debian/control
@@ -10,7 +10,6 @@ Homepage: https://github.com/freecoding/naskpass.git
Package: naskpass
Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, cryptsetup (= 2:1.4.3-4), libncurses5, libtinfo5
-Conflicts: plymouth
+Depends: ${shlibs:Depends}, ${misc:Depends}, cryptsetup (= 2:1.4.3-4), libncurses5, libtinfo5, coreutils
Description: Ncurses based cryptsetup askpass replacement
NULL.
diff --git a/debian/postinst b/debian/postinst
index b951d83..4306174 100644
--- a/debian/postinst
+++ b/debian/postinst
@@ -17,11 +17,14 @@ case "$1" in
db_go
db_get naskpass/activate
if [ "$RET" = "true" ]; then
- nask_activate
+ nask_activate || true
+ if [ "x${ERRMSG}" != "x" ]; then
+ echo "* ${ERRMSG}" >&2
+ nask_deactivate
+ fi
else
nask_deactivate
fi
- echo
update-initramfs -u
;;