X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F40-deborphan;h=b4653793e66940607cc6bc5b02fea43c7e1d3c04;hb=HEAD;hp=b95eaa4a8959eceac894eea4d1fd0df6af23989d;hpb=ba4572516c2b4f6dcbfdf6600450268c2426497b;p=grml-live.git diff --git a/etc/grml/fai/config/scripts/GRMLBASE/40-deborphan b/etc/grml/fai/config/scripts/GRMLBASE/40-deborphan deleted file mode 100755 index b95eaa4..0000000 --- a/etc/grml/fai/config/scripts/GRMLBASE/40-deborphan +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash -# Filename: ${GRML_FAI_CONFIG}/config/scripts/GRMLBASE/40-deborphan -# 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. -################################################################################ - -set -u -set -e - -if [ -r $target/lib/shadowfs/liblogfs.so -a -x $target/usr/bin/deborphan ] ; then - $ROOTCMD deborphan --add-keep shadowfs || /bin/true -fi - -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 - -# workaround for dnsutils transitional package, drop as soon as bind9-dnsutils -# is available in all supported releases -if [[ -r "${target}/usr/share/doc/dnsutils" ]] && [ -x "${target}/usr/bin/deborphan" ] ; then - $ROOTCMD deborphan --add-keep dnsutils || /bin/true -fi - -## END OF FILE ################################################################# -# vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2