blob: 4b965050885549fb3fc406637e466bb82e40281d (
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 enable defaults
|