Changeset 475 for trunk


Ignore:
Timestamp:
02/22/08 11:50:44 (16 years ago)
Author:
bastiaans
Message:

clusterconf/example.php:

  • more descriptive comments
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/web/addons/job_monarch/clusterconf/example.php

    r415 r475  
    11<?php
     2// Will parse {x} (must be numeric) from hostname
     3// and use as X (horizontal) coordinate of nodes
     4//
     5// Will parse {y} (must be numeric) from hostname
     6// and use as Y (vertical) coordinate of nodes
     7//
     8// You can use both X and Y, or only one of them
    29//
    310$SORTBY_HOSTNAME = "rack{x}node{y}.mydomain.mytld";
     11
     12// Should we organize the nodes based on above X,Y coordinates
     13// ascending or descending
     14//
    415$SORT_ORDER = "asc";
    516
     17// What is the label of X and/or Y
     18//
    619$SORT_XLABEL = "rack";
    720$SORT_YLABEL = "node";
Note: See TracChangeset for help on using the changeset viewer.