diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/sbin/bcfg2 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sbin/bcfg2 b/src/sbin/bcfg2 index 2e335487b..23f5bd4e0 100644 --- a/src/sbin/bcfg2 +++ b/src/sbin/bcfg2 @@ -105,7 +105,9 @@ if __name__ == '__main__': correct = client.states.values().count(True) total = len(client.states.values()) - if correct < total: + if ((correct < total) or client.pkgwork['remove']): + if client.pkgwork['remove']: + client.CondPrint('verbose', "Extra packages detected") # summarize current state client.CondPrint('verbose', "--> %s of %s config elements correct" % (correct, total)) |