Skip to content

Commit

Permalink
Avoid file-rc being considered for removal by deborphan
Browse files Browse the repository at this point in the history
For whatever reason deborphan seems to consider file-rc
being available for removal since a few days:

| =====   shell: DEBORPHAN/98-clean-chroot   =====
| [...]
| (Reading database ... 24676 files and directories currently installed.)
| Removing file-rc ...
| Purging configuration files for file-rc ...
| Please purge /var/backups/rc.* manually.
| DEBORPHAN/98-clean-chroot OK.
  • Loading branch information
mika committed Jun 5, 2013
1 parent 99d7926 commit f565065
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions etc/grml/fai/config/scripts/DEBORPHAN/98-clean-chroot
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ if ! [ -x $target/usr/bin/deborphan ] ; then
exit 0
fi

# avoid file-rc being considered for removal by deborphan
if [ -d $target/usr/share/file-rc -a -x $target/usr/bin/deborphan ] ; then
echo "Adding file-rc to keep-list of deborphan to avoid accidental removal"
$ROOTCMD deborphan --add-keep file-rc || /bin/true
fi

# remove all packages not necessary anymore:
$ROOTCMD apt-get -y --purge autoremove

Expand Down

0 comments on commit f565065

Please sign in to comment.