From c88e7f4e57fcef7998dcd570e8a8866c5116f0de Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 30 Aug 2010 23:51:52 +0200 Subject: manager: don't try to minimize transaction when using isolate We should not avoid stopping services when using isolate, since that kinda defeats the point of it. http://bugzilla.redhat.com/show_bug.cgi?id=627014 --- src/manager.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/manager.c') diff --git a/src/manager.c b/src/manager.c index f542883b34..eada82a248 100644 --- a/src/manager.c +++ b/src/manager.c @@ -1226,7 +1226,8 @@ static int transaction_activate(Manager *m, JobMode mode, DBusError *e) { /* Second step: Try not to stop any running services if * we don't have to. Don't try to reverse running * jobs if we don't have to. */ - transaction_minimize_impact(m); + if (mode != JOB_ISOLATE) + transaction_minimize_impact(m); /* Third step: Drop redundant jobs */ transaction_drop_redundant(m); -- cgit v1.2.3-54-g00ecf