Make sure /etc/grml/fai/config/scripts/GRMLBASE/40-deborphan does not fail
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 40-deborphan
1 #!/bin/sh
2 # Filename:      /etc/grml/fai/config/scripts/GRMLBASE/40-deborphan
3 # Purpose:       set up /etc/network/interfaces of live-system
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 # Latest change: Sun Dec 16 21:54:29 CET 2007 [mika]
8 ################################################################################
9
10 set -u
11 set -e
12
13 if [ -r $target/lib/shadowfs/liblogfs.so -a -x $target/usr/bin/deborphan ] ; then
14    $ROOTCMD deborphan --add-keep shadowfs || /bin/true
15 fi
16
17 if [ -r $target/usr/bin/bsdtar -a -x $target/usr/bin/deborphan ] ; then
18    $ROOTCMD deborphan --add-keep bsdtar || /bin/true
19 fi
20
21 ## END OF FILE #################################################################
22 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3