aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2019-03-18 19:41:15 +0000
committerBryn M. Reeves <bmr@redhat.com>2019-03-18 20:02:58 +0000
commit010e43c0e2523a1916e544cf8f678c516b842eb7 (patch)
tree85b6e40420a7aa932cfe8862d37affff6d376716
parentcbedcff40c44713c82c2e676d6dfcc8e502d3566 (diff)
downloadsos-010e43c0e2523a1916e544cf8f678c516b842eb7.tar.gz
[openswan] fix option list style
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r--sos/plugins/openswan.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/sos/plugins/openswan.py b/sos/plugins/openswan.py
index f9241660..ce558132 100644
--- a/sos/plugins/openswan.py
+++ b/sos/plugins/openswan.py
@@ -17,9 +17,10 @@ class Openswan(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
plugin_name = 'openswan'
profiles = ('network', 'security')
- option_list = [("ipsec-barf",
- "collect the output of the ipsec barf command",
- "slow", False)]
+ option_list = [
+ ("ipsec-barf", "collect the output of the ipsec barf command",
+ "slow", False)
+ ]
files = ('/etc/ipsec.conf',)
packages = ('openswan', 'libreswan')