#!/bin/sh

set -eu

# use proxy by setting environment variable
http_proxy=http://127.0.0.1:8118 apt-listbugs -y list apt

# use proxy by loading configuration file
apt-listbugs -C ./debian/tests/proxy_apt.conf -y list apt
apt-listbugs -C ./debian/tests/proxy_specific_apt.conf -y list apt

