X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F40-deborphan;h=a592f5cbd9533c10f45d9da7e6254554471729ca;hb=3e5fb2360b0df8563ade7c0ec43acf655698fc13;hp=0d5783aed39c07f0c4cb4bf06881faebc360933c;hpb=2def18e419f1474c3904672ce297babbb4b9b501;p=grml-live.git diff --git a/etc/grml/fai/config/scripts/GRMLBASE/40-deborphan b/etc/grml/fai/config/scripts/GRMLBASE/40-deborphan index 0d5783a..a592f5c 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/40-deborphan +++ b/etc/grml/fai/config/scripts/GRMLBASE/40-deborphan @@ -1,6 +1,6 @@ -#!/bin/sh +#!/bin/bash # 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 # 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