344ffdae95
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@139 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
31 lines
622 B
Perl
31 lines
622 B
Perl
#!/usr/bin/env perl
|
|
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
|
package xCAT::GlobalDef;
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
=head1 xCAT::GlobalDef
|
|
|
|
=head2 Package Description
|
|
|
|
This module contains all the global info for xCAT.
|
|
|
|
|
|
=cut
|
|
|
|
#--------------------------------------------------------------------------------
|
|
|
|
|
|
# valid values for nodelist.nodetype column
|
|
$::NODETYPE_OSI="osi";
|
|
|
|
|
|
|
|
# valid values for nodelist.status columns or other status
|
|
$::STATUS_ACTIVE="active";
|
|
$::STATUS_INACTIVE="inactive";
|
|
$::STATUS_UNKNOWN="unknown";
|
|
|
|
1;
|
|
|