diff options
author | Kim Hagen <kim.sidney@gmail.com> | 2016-02-03 06:41:13 -0500 |
---|---|---|
committer | Kim Hagen <kim.sidney@gmail.com> | 2016-02-03 06:41:13 -0500 |
commit | ab3d92de1b23654730c8d317a376bfc6301e92c7 (patch) | |
tree | 4b3abd355bd6c016960fc54a7712f231dee799bb | |
parent | 03705b9f859c01a610e399cc3523c61a484a36cb (diff) | |
download | vyos-build-ab3d92de1b23654730c8d317a376bfc6301e92c7.tar.gz vyos-build-ab3d92de1b23654730c8d317a376bfc6301e92c7.zip |
Add hook that prevent services from starting at boot.
-rwxr-xr-x | data/live-build-config/hooks/16-disable_services.chroot | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/data/live-build-config/hooks/16-disable_services.chroot b/data/live-build-config/hooks/16-disable_services.chroot new file mode 100755 index 00000000..c68a6b3d --- /dev/null +++ b/data/live-build-config/hooks/16-disable_services.chroot @@ -0,0 +1,27 @@ +#!/bin/sh + +echo I: 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 |