-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
drakrun: fix IPT support #512
Conversation
@@ -162,6 +162,11 @@ def generate_plugin_cmdline(self, quality, enabled_plugins): | |||
plugin_list = self.active_plugins[quality] | |||
|
|||
plugin_list = list(set(plugin_list) & set(enabled_plugins)) | |||
|
|||
if "ipt" in plugin_list and "codemon" not in plugin_list: | |||
self.log.info("Using ipt plugin implies using codemon") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add same check on drakcore frontend too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kscieslinski Do you mean displaying a warning box with the content as above?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
enable_ipt
fromconfig.ini
, IPT is just enabled by requesting activation ofipt
pluginipt
implies activation ofcodemon
codemon