15 lines
222 B
Plaintext
15 lines
222 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# Update the Apt File cache.
|
||
|
#
|
||
|
# This allows to use using apt-file out-of-the-box.
|
||
|
|
||
|
. /chroot/root/config/binary
|
||
|
|
||
|
if [ -x /usr/bin/apt-file ] && [ "${LB_APT_INDICES}" = "true" ]
|
||
|
then
|
||
|
apt-file update
|
||
|
fi
|