How to pull Avamar Agent versions from Linux server

Hi,
I’m try to create a property to query the Avamar Agent versions installed on Linux servers.
I know how to create for Windows, but have no idea on the Linux systems.

the most recent rpm I installed is:
"AvamarClient-linux-sles11-x86_64-19.1.100-38.rpm"
I was told by the Linux server admin that it installed successfully, but I can’t tell what versions is installed from the console.

can anyone help?

Thanks.

This analysis should return the packages installed and version for all rpm packages: https://bigfix.me/analysis/details/2998050

Also, I have a bunch of old Avamar related content on BigFix.Me:

You can install, register, configure, monitor Avamar (or in reality, anything) all from BigFix, which I used to do long ago when I used it.

My relevance may need updated in the old content. Also my old Avamar content is, I think, mostly windows specific, but it could be easily adapted to be cross platform.

2 Likes

you can replace teh splunk package with avamar

 if name of operating system contains "Linux" 
 then ( if exist package "splunkforwarder" of rpm 
		then (name of package "splunkforwarder" of rpm, version of package "splunkforwarder" of rpm) as string
			else "LinuxSplunkForwarderNotFound,NA" ) 
  else if name of operating system contains "SunOS" 
		then ( if exist name of pkginfo "splunkforwarder" of pkgdb 
	then ( name of pkginfo "splunkforwarder" of it , version of pkginfo "splunkforwarder" of it ) of pkgdb as string 
			else "SunOSSplunkForwarderNotFound,NA" ) 
else ("N/A")
1 Like