I'd like to change this script so as to make a function in the
schedd available to its plugins. The old script looked liked this
(abbreviated), where x, y, z, and w are some SOAP functions we need to
make sure are exported to prevent libcondor_utils form malfunctioning
(according to the comments):
{ global: x; y; z; w; local: *; }
I'd like to make the script look like this, instead:
{ global: x; y; z; w; t; }
where t is the new function I'm making available to schedd plugins. As
far as I can tell, making this change doesn't change which SOAP functions
are made available (that is, the 'local: *;' command wasn't hiding any),
but not explicitly hiding all other symbols makes me a lot happier.
Any thoughts? Thanks.
- Todd L Miller
|