aboutsummaryrefslogtreecommitdiffstats
path: root/sos/plugins/veritas.py
diff options
context:
space:
mode:
Diffstat (limited to 'sos/plugins/veritas.py')
-rw-r--r--sos/plugins/veritas.py31
1 files changed, 16 insertions, 15 deletions
diff --git a/sos/plugins/veritas.py b/sos/plugins/veritas.py
index 607ad7ec..a04b0b2a 100644
--- a/sos/plugins/veritas.py
+++ b/sos/plugins/veritas.py
@@ -1,20 +1,21 @@
-### This program is free software; you can redistribute it and/or modify
-## it under the terms of the GNU General Public License as published by
-## the Free Software Foundation; either version 2 of the License, or
-## (at your option) any later version.
-##
-## This program is distributed in the hope that it will be useful,
-## but WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-## GNU General Public License for more details.
-##
-## You should have received a copy of the GNU General Public License
-## along with this program; if not, write to the Free Software
-## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# 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
import os
+
class Veritas(Plugin, RedHatPlugin):
"""Veritas related information
"""
@@ -23,8 +24,8 @@ class Veritas(Plugin, RedHatPlugin):
# Information about VRTSexplorer obtained from
# http://seer.entsupport.symantec.com/docs/243150.htm
- option_list = [("script", "Define VRTSexplorer script path", "",
- "/opt/VRTSspt/VRTSexplorer")]
+ option_list = [("script", "Define VRTSexplorer script path", "",
+ "/opt/VRTSspt/VRTSexplorer")]
def check_enabled(self):
return os.path.isfile(self.get_option("script"))