diff options
Diffstat (limited to 'busybox.pkg/prerm')
-rwxr-xr-x | busybox.pkg/prerm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/busybox.pkg/prerm b/busybox.pkg/prerm index 96a3db6..30ebdab 100755 --- a/busybox.pkg/prerm +++ b/busybox.pkg/prerm @@ -2,9 +2,9 @@ if [ "x${1}" = 'xupgrade' ]; then if [ -f /usr/share/busybox/init-scripts ]; then - for script in $(cat /usr/share/busybox/init-scripts); do + while read -r script enabled; do "/etc/init.d/${script}" stop - done + done </usr/share/busybox/init-scripts fi while read link name prio; do update-alternatives --remove "${name}" "${link}.busybox" |