Hi,
Just edit the bsmping.py file - get rid of the splunk-python dependencies.
Cheers,
Ralf
My diff output is:
splunksrv1:/opt/splunk/etc/deployment-apps/bsm/bin # diff bsmping.py /tmp
5a6
> #-- Updated by Ralf Zessin - get rid of splunk-python includes
10,11d10
< import splunk.Intersplunk as si
< import splunk.clilib.cli_common as comm
15c14,15
< si.generateErrorResults('Environment variable SPLUNK_HOME must be set')
---
> print 'ERROR: Environment variable SPLUNK_HOME must be set'
> sys.exit(1)
17c17
< VERSION = '1.4'
---
> VERSION = '1.5'
97c97,98
< si.generateErrorResults("Too few arguments")
---
> print 'ERROR: Too few arguments'
> sys.exit()
349c350,351
< si.generateErrorResults("Incorrect usage...")
---
> print 'ERROR: Incorrect usage...'
> sys.exit()
... View more