build on PRs; nitpicks
[plcapi.git] / tests / ci / setup / setup_privoxy.sh
1 #!/bin/sh
2
3 # Install and configure privoxy
4 # Has to be run as admin
5
6 set -e
7
8 SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
9
10 DEBIAN_FRONTEND=noninteractive apt-get install -y privoxy
11
12 cp -f "$SCRIPT_DIR/../config/privoxy" /etc/privoxy/config
13 service privoxy restart