diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2019-03-18 19:41:15 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2019-03-18 20:02:58 +0000 |
commit | 010e43c0e2523a1916e544cf8f678c516b842eb7 (patch) | |
tree | 85b6e40420a7aa932cfe8862d37affff6d376716 | |
parent | cbedcff40c44713c82c2e676d6dfcc8e502d3566 (diff) | |
download | sos-010e43c0e2523a1916e544cf8f678c516b842eb7.tar.gz |
[openswan] fix option list style
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/openswan.py | 7 |
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') |