aboutsummaryrefslogtreecommitdiffstats
path: root/testing/scripts
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2015-11-20 17:42:55 +0100
committerTobias Brunner <tobias@strongswan.org>2016-06-15 16:24:43 +0200
commitc857621e70b16c58e2072bbde059a5f062dd3a5c (patch)
tree06ffe3ae674678540eb880758f2373471fc010a6 /testing/scripts
parente0c59faa68127b9016c45b3ff6ca6e93e19d6970 (diff)
downloadstrongswan-c857621e70b16c58e2072bbde059a5f062dd3a5c.tar.bz2
strongswan-c857621e70b16c58e2072bbde059a5f062dd3a5c.tar.xz
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.
Diffstat (limited to 'testing/scripts')
-rwxr-xr-xtesting/scripts/build-baseimage2
1 files changed, 0 insertions, 2 deletions
diff --git a/testing/scripts/build-baseimage b/testing/scripts/build-baseimage
index e410f6a37..9bee1f544 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