cancel
Showing results for 
Search instead for 
Did you mean: 

NetBackup EEB Listing

DPeaco
Moderator
Moderator
   VIP   

Is there a way via command line to get a list of current EEBs installed on an appliance?

NBU 5230 running 3.2/8.2

I'm looking for a way to automate the check / listing of installed EEBs.

Thanks,
Dennis
1 ACCEPTED SOLUTION

Accepted Solutions

DPeaco
Moderator
Moderator
   VIP   

OK, I found it and it works.

If you are doing this command line? This is what you run to get the list of EEBs installed on your NBU appliance:

/opt/NBUAppliance/scripts/patch.pl --list=eebs

Thanks,
Dennis

View solution in original post

2 REPLIES 2

DPeaco
Moderator
Moderator
   VIP   

OK, I found it and it works.

If you are doing this command line? This is what you run to get the list of EEBs installed on your NBU appliance:

/opt/NBUAppliance/scripts/patch.pl --list=eebs

Thanks,
Dennis

jnardello
Moderator
Moderator
   VIP    Certified

Or not worry about whether they're going to change the command on you the next time you upgrade, and just run "rpm -qa | grep EEB"

Same output. =)

$ ssh -qtt myappliance "rpm -qa |grep EEB"
NBAPP_EEB_ET3981134-3.2.0.0-10.x86_64
NBAPP_EEB_ET3990855-3.2.0.0-1.x86_64
NBAPP_EEB_ET3983638-3.2.0.0-1.x86_64
NBAPP_EEB_ET3983739-3.2.0.0-1.x86_64
NBAPP_EEB_ET3991667-3.2.0.0-2.x86_64
NBAPP_EEB_ET3990516-3.2.0.0-1.x86_64
NBAPP_EEB_ET3986342-3.2.0.0-1.x86_64
NBAPP_EEB_ET3987003-3.2.0.0-1.x86_64
$

$ ssh -qtt myappliance "sudo /opt/NBUAppliance/scripts/patch.pl --list=eebs"
List of installed EEBs:
NBAPP_EEB_ET3981134-3.2.0.0-10.x86_64
NBAPP_EEB_ET3983638-3.2.0.0-1.x86_64
NBAPP_EEB_ET3983739-3.2.0.0-1.x86_64
NBAPP_EEB_ET3986342-3.2.0.0-1.x86_64
NBAPP_EEB_ET3987003-3.2.0.0-1.x86_64
NBAPP_EEB_ET3990516-3.2.0.0-1.x86_64
NBAPP_EEB_ET3990855-3.2.0.0-1.x86_64
NBAPP_EEB_ET3991667-3.2.0.0-2.x86_64
$