2011-08-04 19:47:46 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Update the Apt File cache.
|
|
|
|
#
|
|
|
|
# This allows to use using apt-file out-of-the-box.
|
|
|
|
|
2013-11-03 19:20:33 -01:00
|
|
|
. /live-build/config/binary
|
2011-08-04 19:47:46 +00:00
|
|
|
|
2020-03-12 04:37:21 -01:00
|
|
|
if command -v apt-file >/dev/null && [ "${LB_APT_INDICES}" = "true" ]
|
2011-08-04 19:47:46 +00:00
|
|
|
then
|
|
|
|
apt-file update
|
|
|
|
fi
|