source: trunk/web2/addons/job_monarch/clusterconf/example.php @ 532

Last change on this file since 532 was 532, checked in by ramonb, 16 years ago

web2:

  • added Web 2.0 test branch
File size: 515 bytes
Line 
1<?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
9//
10$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//
15$SORT_ORDER = "asc";
16
17// What is the label of X and/or Y
18//
19$SORT_XLABEL = "rack";
20$SORT_YLABEL = "node";
21?>
Note: See TracBrowser for help on using the repository browser.