diff options
Diffstat (limited to 'share')
-rwxr-xr-x | share/hooks/update-apt-xapian-index.chroot | 14 |
1 files changed, 14 insertions, 0 deletions
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 |