From 285f8d50fd530c75d1a5fa35e557348a1ef5cc28 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 18 Jul 2011 15:44:33 +0200 Subject: Adding hook for calling update-apt-xapian-index, thanks to Colin Watson (Closes: #627716). --- share/hooks/update-apt-xapian-index.chroot | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 share/hooks/update-apt-xapian-index.chroot (limited to 'share/hooks/update-apt-xapian-index.chroot') diff --git a/share/hooks/update-apt-xapian-index.chroot b/share/hooks/update-apt-xapian-index.chroot new file mode 100755 index 000000000..f93c04266 --- /dev/null +++ b/share/hooks/update-apt-xapian-index.chroot @@ -0,0 +1,14 @@ +#!/bin/sh + +set -e + +# Update the Apt Xapian index. +# +# The package would do this itself, but (a) it checks policy-rc.d which says it +# is not allowed to, and (b) it wants to build the index in the background which +# will be racy in the context of live-build. + +if [ -x /usr/sbin/update-apt-xapian-index ] +then + /usr/sbin/update-apt-xapian-index --force --quiet +fi -- cgit v1.2.3