added GlobalDef.pm for storing global variables for xCAT
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@139 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
parent
b5e9becf18
commit
344ffdae95
30
perl-xCAT-2.0/xCAT/GlobalDef.pm
Normal file
30
perl-xCAT-2.0/xCAT/GlobalDef.pm
Normal file
@ -0,0 +1,30 @@
|
||||
#!/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;
|
||||
|
Loading…
Reference in New Issue
Block a user