Here is the debdiff: diff -Nru friendly-recovery-0.1.1/debian/changelog friendly-recovery-0.1.2/debian/changelog --- friendly-recovery-0.1.1/debian/changelog 2008-05-08 11:40:13.000000000 +0200 +++ friendly-recovery-0.1.2/debian/changelog 2008-05-08 14:38:43.000000000 +0200 @@ -1,3 +1,10 @@ +friendly-recovery (0.1.2) hardy-proposed; urgency=low + + * usr/share/recovery-mode/options/dpkg: + - add recovery mode for package failure (LP: #228200) + + -- Michael Vogt <[EMAIL PROTECTED]> Thu, 08 May 2008 14:30:08 +0200 + friendly-recovery (0.1.1) hardy-proposed; urgency=low * usr/share/recovery-mode/options/root: diff -Nru /tmp/qTNR68O5e4/friendly-recovery-0.1.1/usr/share/recovery-mode/options/dpkg /tmp/WWRkMKfQ4P/friendly-recovery-0.1.2/usr/share/recovery-mode/options/dpkg --- friendly-recovery-0.1.1/usr/share/recovery-mode/options/dpkg 1970-01-01 01:00:00.000000000 +0100 +++ friendly-recovery-0.1.2/usr/share/recovery-mode/options/dpkg 2008-05-08 14:32:14.000000000 +0200 @@ -0,0 +1,21 @@ +#!/bin/sh + +if [ "$1" = "test" ]; then + echo "Repair broken packages" + exit 0 +fi + +# do some cleanup +rm /var/lib/apt/lists/partial/* + +# now run the apt foo +dpkg --configure -a +apt-get update +apt-get install -f +apt-get dist-upgrade + +echo "" +echo "Finished, please press ENTER" +read TMP + +exit 0
-- support package repair too https://bugs.launchpad.net/bugs/228200 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
