From: Tobias Brunner Date: Fri, 20 Nov 2015 16:42:55 +0000 (+0100) Subject: testing: Don't attempt to stop services when building base image X-Git-Tag: 5.5.0dr1~17^2~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c857621e70b16c58e2072bbde059a5f062dd3a5c;p=thirdparty%2Fstrongswan.git testing: Don't attempt to stop services when building base image Unlike `apt-get install` in a chroot debootstrap does not seem to start the services but stopping them might cause problems if they were running outside the chroot. --- diff --git a/testing/scripts/build-baseimage b/testing/scripts/build-baseimage index e410f6a37e..9bee1f5448 100755 --- a/testing/scripts/build-baseimage +++ b/testing/scripts/build-baseimage @@ -77,8 +77,6 @@ do_on_exit graceful_umount $LOOPDIR/proc for service in $SERVICES do - log_action "Stopping service $service" - execute_chroot "/etc/init.d/$service stop" log_action "Disabling service $service" execute_chroot "update-rc.d -f $service remove" done