blob: 63d0fa7f7b5bd0bc25ddf86895d82ff312807ed0 (
plain)
1
2
3
4
5
6
7
|
#!/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
|