/etc/apt/apt-zip.conf is in apt-zip 0.18.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | # Configuration file for apt-zip.
# This is a /bin/sh code snippet.
# METHOD is taken from /usr/share/apt-zip/.
METHOD=wget
# MEDIUM should be defined in /etc/fstab with option `noauto'.
# It is possible to use an already mounted device or one which is not in
# /etc/fstab by using the option --skip-mount|-s in the command line
MEDIUM=/media/zip
# OPTIONS is a comma-separated list of options.
# Possible options include: tar[=posixtarprogram], gnutar[=gnutarprogram],
# solaristar[=solaristarprogram], restart
# Examples:
# OPTIONS=tar=gtar
# OPTIONS=solaristar,restart
# OPTIONS="gnutar, restart=1"
# Recommended for a Solaris download host when possible:
# OPTIONS=solaristar,gnutar=gtar,restart
OPTIONS=
# DEFAULT_APTGETACTION is the action taken by apt-get when neither
# the --aptgetaction nor the --packages options are given.
# Possible actions include: dselect-upgrade(default), upgrade and dist-upgrade
DEFAULT_APTGETACTION=dselect-upgrade
# The regexp applied to filter (with grep) the files to download.
# Examples:
# GREP="^http\|^ftp"
# GREP="-v ^cdrom\|^file"
GREP="^http\|^ftp"
|