1
1
# this script generates for each plugin:
2
+ # - its name
2
3
# - URL to upstream code
3
4
# - list of distros
4
5
# - list of profiles
6
+ # - list of packages that enable the plugin (no other enabling pieces)
5
7
# - list of paths it collects (add_copy_spec)
6
8
# - list of paths it forbits to collect (add_forbidden_path)
7
9
# - list of commands it calls (add_cmd_output)
@@ -74,6 +76,7 @@ def add_all_items(method, dest, wrapopen='\(', wrapclose='\)'):
74
76
'sourcecode' : 'https://github.com/sosreport/sos/blob/master/sos/report/plugins/%s.py' % plugname ,
75
77
'distros' : [],
76
78
'profiles' : [],
79
+ 'packages' : [],
77
80
'copyspecs' : [],
78
81
'forbidden' : [],
79
82
'commands' : [],
@@ -84,6 +87,7 @@ def add_all_items(method, dest, wrapopen='\(', wrapclose='\)'):
84
87
plugcontent = open (os .path .join (PLUGDIR , plugfile )).read ().replace ('\n ' ,'' )
85
88
add_all_items ("from sos.report.plugins import " , plugs_data [plugname ]['distros' ], wrapopen = '' , wrapclose = '(class|from|import)' )
86
89
add_all_items ("profiles = " , plugs_data [plugname ]['profiles' ], wrapopen = '' )
90
+ add_all_items ("packages = " , plugs_data [plugname ]['packages' ], wrapopen = '' )
87
91
add_all_items ("add_copy_spec" , plugs_data [plugname ]['copyspecs' ])
88
92
add_all_items ("add_forbidden_path" , plugs_data [plugname ]['forbidden' ])
89
93
add_all_items ("add_cmd_output" , plugs_data [plugname ]['commands' ])
@@ -94,7 +98,7 @@ def add_all_items(method, dest, wrapopen='\(', wrapclose='\)'):
94
98
95
99
# print output; if "csv" is cmdline argument, print in CSV format, else JSON
96
100
if (len (sys .argv ) > 1 ) and (sys .argv [1 ] == "csv" ):
97
- print ("plugin;url;distros;profiles;copyspecs;forbidden;commands;service_status;journals;env_vars" )
101
+ print ("plugin;url;distros;profiles;packages; copyspecs;forbidden;commands;service_status;journals;env_vars" )
98
102
for plugname in plugs_data .keys ():
99
103
plugin = plugs_data [plugname ]
100
104
# determine max number of lines - usually "max(len(copyspec),len(commands))"
0 commit comments