Add --assume-yes to apt-get autoremove

This commit is contained in:
Anders Ingemann 2014-05-18 22:26:46 +02:00
parent 6fda70a237
commit 7fe72feb2c

View file

@ -154,7 +154,8 @@ class PurgeUnusedPackages(Task):
def run(cls, info): def run(cls, info):
log_check_call(['chroot', info.root, log_check_call(['chroot', info.root,
'apt-get', 'autoremove', 'apt-get', 'autoremove',
'--purge']) '--purge',
'--assume-yes'])
class AptClean(Task): class AptClean(Task):