diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2013-04-26 17:42:33 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2013-04-26 17:42:33 +0100 |
commit | 44948f8a3eb6bc3430698a4e8ecb541fc941cfa6 (patch) | |
tree | c017e4bf8998258b73fc04828e93bf018d001cee | |
parent | 7a48d138f86bf1a9d8aa54846f4d1c0adce96ad6 (diff) | |
download | sos-44948f8a3eb6bc3430698a4e8ecb541fc941cfa6.tar.gz |
Enable Openswan plug-in on more distributions
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/openswan.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sos/plugins/openswan.py b/sos/plugins/openswan.py index 1354e174..22214a5d 100644 --- a/sos/plugins/openswan.py +++ b/sos/plugins/openswan.py @@ -14,9 +14,9 @@ ## along with this program; if not, write to the Free Software ## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -from sos.plugins import Plugin, RedHatPlugin +from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin -class Openswan(Plugin, RedHatPlugin): +class Openswan(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): """ipsec related information """ |