blob: 68971405351d27c8975e9137790c1242b2128585 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/sh
echo I: Enabling/Disabling services.
systemctl disable exim4
/usr/sbin/update-rc.d -f exim4 remove
systemctl disable isc-dhcp-server
/usr/sbin/update-rc.d -f isc-dhcp-server remove
systemctl disable isc-dhcp-relay
/usr/sbin/update-rc.d -f isc-dhcp-relay remove
systemctl disable nfacctd
/usr/sbin/update-rc.d -f nfacctd remove
systemctl disable pmacctd
/usr/sbin/update-rc.d -f pmacctd remove
systemctl disable sfacctd
/usr/sbin/update-rc.d -f sfacctd remove
systemctl disable uacctd
/usr/sbin/update-rc.d -f uacctd remove
systemctl disable lighttpd
/usr/sbin/update-rc.d -f lighttpd remove
systemctl disable ssh
/usr/sbin/update-rc.d -f ssh remove
systemctl disable openvpn
/usr/sbin/update-rc.d -f openvpn remove
systemctl disable dnsmasq
/usr/sbin/update-rc.d -f dnsmasq remove
systemctl disable lldpd
/usr/sbin/update-rc.d -f lldpd remove
systemctl enable ssh-session-cleanup
|