Forum Discussion

DPeaco's avatar
DPeaco
Moderator
3 months ago

SLP Policy Name List

Greetings, Is there a way to dump a list of SLP Policies that are activated via command line and NOT through the GUI? I'm wanting to automate a way to make sure the job scheduler is running AND t...
  • StefanosM's avatar
    3 months ago

    Check this out. It is a quick and dirty script, but it may help you.


    for i in `nbstl -b`
    do
      a=`nbstl $i -L |grep State |head -1|awk '{print $2}'`
      echo $i," "$a
    done