# MCos.ctl:100:Performs Operating System Multi-run Collections # $Id: MCos.ctl,v 1.6 2013/10/30 07:18:40 RDA Exp $ # ARCS: $Header: /home/cvs/cvs/RDA_8/src/scripting/lib/collect/OS/MCos.ctl,v 1.6 2013/10/30 07:18:40 RDA Exp $ # # Change History # 20130606 MSC Remove cluster collection. =head1 NAME OS:MCos - Performs Operating System Multi-run Collections =head1 DESCRIPTION This module regroups multi-run collections specific to the operating system. =cut use Mrc var @CONTROL_SECTIONS = ('NET','OS') keep @CONTROL_SECTIONS =head1 NETWORK MULTI-RUN COLLECTIONS Performs network collections. =cut section NET collect &{check(getOsName(),'aix', 'OS:RCaix|NET',\ 'darwin', 'OS:RCdarwin|NET',\ 'dec_osf', 'OS:RCosf|NET',\ 'dynixptx', 'OS:RCptx|NET',\ 'hpux', 'OS:RChpux|NET',\ 'linux', 'OS:RClinux|NET',\ 'solaris', 'OS:RCsunos|NET',\ cond(isUnix(),'OS:RCunix|NET'))}() =head1 OPERATING SYSTEM MULTI-RUN COLLECTIONS Performs operating system collections. =cut section OS collect &{check(getOsName(),'aix', 'OS:RCaix|OS',\ 'darwin', 'OS:RCdarwin|OS',\ 'dec_osf', 'OS:RCosf|OS',\ 'dynixptx', 'OS:RCptx|OS',\ 'hpux', 'OS:RChpux|OS',\ 'linux', 'OS:RClinux|OS',\ 'solaris', 'OS:RCsunos|OS',\ cond(isUnix(),'OS:RCunix|OS'))}() =head1 SEE ALSO L, L, L, L, L, L, L, L =head1 COPYRIGHT NOTICE Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved. =head1 TRADEMARK NOTICE Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners. =cut