Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This is normally done by filtering by OS info, but not necssarily necessarily limited to OS info only:

Code Block
languageperl
#filter using both regular expression and string equality checks:
'os_info' => {
 'version' => '/12.2|12.4|15.0/',
 'os' => 'IOS'
},
# or just the specific os family/type and that's all:
'os_info' => { 
 'os' => '/(Linux|CentOS|Ubuntu)/'
},

...