Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/plugins/debian.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-14 11:01:37 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-14 11:01:37 (GMT)
commita75122d1f6b3cbdfb6456e4e559d66e6b8d77e25 (patch)
treece0328a09fa930c30c289487c6976775334dedfb /devbot/plugins/debian.py
parent8be37beabcbaef276a45a44ff94c8ea293c3f05a (diff)
Make system check interactive in all commands
Diffstat (limited to 'devbot/plugins/debian.py')
-rw-r--r--devbot/plugins/debian.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/devbot/plugins/debian.py b/devbot/plugins/debian.py
index a4e4d67..437846d 100644
--- a/devbot/plugins/debian.py
+++ b/devbot/plugins/debian.py
@@ -23,7 +23,8 @@ class PackageManager(interfaces.PackageManager):
args.append("install")
args.extend(packages)
- command.run_with_sudo(args, test=self._test)
+ command.run_with_sudo(args, test=self._test,
+ interactive=self._interactive)
def remove_packages(self, packages):
args = ["dpkg", "-P"]
@@ -41,7 +42,8 @@ class PackageManager(interfaces.PackageManager):
args.append("upgrade")
- command.run_with_sudo(args, test=self._test)
+ command.run_with_sudo(args, test=self._test,
+ interactive=self._interactive)
def find_all(self):
return [package.name for package in self._cache