From cd2f172b691a5889a84b65fab8b202c308e1168b Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Wed, 25 Jun 2014 13:30:17 -0400 Subject: Allow services to be disabled by default. Disable telnetd. --- (limited to 'busybox.pkg') diff --git a/busybox.pkg/postinst b/busybox.pkg/postinst index c003561..9f23a39 100755 --- a/busybox.pkg/postinst +++ b/busybox.pkg/postinst @@ -13,11 +13,12 @@ if [ "x${1}" = 'xconfigure' ]; then fi fi if [ -f /usr/share/busybox/init-scripts ]; then - for script in $(cat /usr/share/busybox/init-scripts); do - if [ "x${2:+set}" != 'xset' ]; then - "/etc/init.d/${script}" enable + while read -r script enabled; do + if [ "x${enabled}" = 'xenabled' ]; then + [ "x${2:+set}" != 'xset' ] && \ + "/etc/init.d/${script}" enable + "/etc/init.d/${script}" start fi - "/etc/init.d/${script}" start - done + done