18 lines
381 B
18 lines
381 B
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
|
|
apt-get install -y --force-yes apt-cacher-ng
|
|
|
|
|
|
## This is needed to enable https_port
|
|
#apt-get install devscripts build-essential
|
|
#apt-get install libssl-dev ## not in build-dep ... because we'll add it.
|
|
#apt-get source squid3
|
|
#apt-get build-dep squid3
|
|
#cd squid3-3.1.19
|
|
#vim debian/rules # or whatever editor you use
|
|
# add --enable-ssl
|
|
#debuild -us -uc
|
|
|