Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/plugins/fedora.py
diff options
context:
space:
mode:
Diffstat (limited to 'devbot/plugins/fedora.py')
-rw-r--r--devbot/plugins/fedora.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/devbot/plugins/fedora.py b/devbot/plugins/fedora.py
index 2e67674..d1a2936 100644
--- a/devbot/plugins/fedora.py
+++ b/devbot/plugins/fedora.py
@@ -19,7 +19,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 = ["rpm", "-e"]
@@ -35,7 +36,8 @@ class PackageManager(interfaces.PackageManager):
args.append("update")
- command.run_with_sudo(args, test=self._test)
+ command.run_with_sudo(args, test=self._test,
+ interactive=self._interactive)
def find_all(self):
query_format = "--queryformat=[%{NAME} ]"