Forum Discussion

DPeaco's avatar
DPeaco
Moderator
5 years ago

NetBackup EEB Listing

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.

  • 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

2 Replies

  • 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

    • jnardello's avatar
      jnardello
      Moderator

      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
      $