40-deborphan: Add exception for libewf1 and libstdc++2.10-glibc2.2
authorMichael Prokop <mika@grml.org>
Sun, 2 Aug 2009 23:39:57 +0000 (01:39 +0200)
committerMichael Prokop <mika@grml.org>
Sun, 2 Aug 2009 23:39:57 +0000 (01:39 +0200)
debian/changelog
etc/grml/fai/config/scripts/GRMLBASE/40-deborphan

index 2d7710c..c76c3f8 100644 (file)
@@ -19,8 +19,10 @@ grml-live (0.9.20) UNRELEASED; urgency=low
     - Drop workbone (see #429178).
   * Add check for valid Debian suite name to avoid breakage of sources.list
     if someone calls grml-live with a typo in the -s option.
+  * Add exception for libewf1 and libstdc++2.10-glibc2.2 in
+    /etc/grml/fai/config/scripts/GRMLBASE/40-deborphan.
 
- -- Michael Prokop <mika@grml.org>  Mon, 03 Aug 2009 01:28:48 +0200
+ -- Michael Prokop <mika@grml.org>  Mon, 03 Aug 2009 01:39:30 +0200
 
 grml-live (0.9.19) unstable; urgency=low
 
index 0d5783a..e0f7594 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 # Filename:      /etc/grml/fai/config/scripts/GRMLBASE/40-deborphan
-# Purpose:       set up /etc/network/interfaces of live-system
+# Purpose:       configure packages for deborphan (usually exception rules)
 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 # Bug-Reports:   see http://grml.org/bugs/
 # License:       This file is licensed under the GPL v2 or any later version.
@@ -17,5 +17,13 @@ if [ -r $target/usr/bin/bsdtar -a -x $target/usr/bin/deborphan ] ; then
    $ROOTCMD deborphan --add-keep bsdtar || /bin/true
 fi
 
+if [ -r $target/usr/bin/ewfinfo -a -x $target/usr/bin/deborphan ] ; then
+   $ROOTCMD deborphan --add-keep libewf1 || /bin/true
+fi
+
+if [ -r $target//usr/lib/libstdc++-libc6.2-2.so.3 -a -x $target/usr/bin/deborphan ] ; then
+   $ROOTCMD deborphan --add-keep libstdc++2.10-glibc2.2 || /bin/true
+fi
+
 ## END OF FILE #################################################################
 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3