Revision b9b5acc3

b/lib/constants.py
1482 1482
UIDPOOL_UID_MIN = _constants.UIDPOOL_UID_MIN
1483 1483
UIDPOOL_UID_MAX = _constants.UIDPOOL_UID_MAX
1484 1484

  
1485
# Name or path of the pgrep command
1486
PGREP = "pgrep"
1485
PGREP = _constants.PGREP
1487 1486

  
1488
# Name of the node group that gets created at cluster init or upgrade
1489
INITIAL_NODE_GROUP_NAME = "default"
1487
INITIAL_NODE_GROUP_NAME = _constants.INITIAL_NODE_GROUP_NAME
1490 1488

  
1491 1489
ALLOC_POLICY_PREFERRED = _constants.ALLOC_POLICY_PREFERRED
1492 1490
ALLOC_POLICY_LAST_RESORT = _constants.ALLOC_POLICY_LAST_RESORT
b/src/Ganeti/HsConstants.hs
3632 3632
uidpoolUidMax :: Integer
3633 3633
uidpoolUidMax = 2 ^ 32 - 1
3634 3634

  
3635
-- | Name or path of the pgrep command
3636
pgrep :: String
3637
pgrep = "pgrep"
3638

  
3639
-- | Name of the node group that gets created at cluster init or
3640
-- upgrade
3641
initialNodeGroupName :: String
3642
initialNodeGroupName = "default"
3643

  
3635 3644
-- * Possible values for NodeGroup.alloc_policy
3636 3645

  
3637 3646
allocPolicyLastResort :: String

Also available in: Unified diff