summaryrefslogtreecommitdiffstats
path: root/system-build/share/hooks/normal/0400-update-apt-file-cache.hook.chroot
diff options
context:
space:
mode:
Diffstat (limited to 'system-build/share/hooks/normal/0400-update-apt-file-cache.hook.chroot')
-rwxr-xr-xsystem-build/share/hooks/normal/0400-update-apt-file-cache.hook.chroot14
1 files changed, 14 insertions, 0 deletions
diff --git a/system-build/share/hooks/normal/0400-update-apt-file-cache.hook.chroot b/system-build/share/hooks/normal/0400-update-apt-file-cache.hook.chroot
new file mode 100755
index 0000000..771e903
--- /dev/null
+++ b/system-build/share/hooks/normal/0400-update-apt-file-cache.hook.chroot
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+set -e
+
+# Update the Apt File cache.
+#
+# This allows to use using apt-file out-of-the-box.
+
+. /live-build/config/binary
+
+if [ -x /usr/bin/apt-file ] && [ "${LB_APT_INDICES}" = "true" ]
+then
+ apt-file update
+fi