blob: 915ab264c639fc482221edc194370914808e2cf4 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
echo "Disabling network services (they get run by network scripts)"
update-rc.d tor disable || true
update-rc.d dnsmasq disable || true
update-rc.d ttdnsd disable || true
echo "Enable proxy"
update-rc.d proxy defaults
|