- Timestamp:
- 07/06/11 09:35:34 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/fadctrl.cc
r11253 r11257 1777 1777 ("dns", var<string>("localhost"), "Dim nameserver host name (Overwites DIM_DNS_NODE environment variable)") 1778 1778 ("log,l", var<string>(n), "Write log-file") 1779 ("no-dim,d", po_switch(), "Disable dim services")1779 // ("no-dim,d", po_switch(), "Disable dim services") 1780 1780 ("console,c", var<int>(), "Use console (0=shell, 1=simple buffered, X=simple unbuffered)") 1781 1781 ("cmd", vars<string>(), "Execute one or more commands at startup") … … 1874 1874 if (!conf.Has("console")) 1875 1875 { 1876 if (conf.Get<bool>("no-dim"))1877 return RunShell<LocalStream, StateMachine>(conf);1878 else1876 // if (conf.Get<bool>("no-dim")) 1877 // return RunShell<LocalStream, StateMachine>(conf); 1878 // else 1879 1879 return RunShell<LocalStream, StateMachineDim>(conf); 1880 1880 } 1881 1881 // Cosole access w/ and w/o Dim 1882 if (conf.Get<bool>("no-dim"))1882 /* if (conf.Get<bool>("no-dim")) 1883 1883 { 1884 1884 if (conf.Get<int>("console")==0) … … 1888 1888 } 1889 1889 else 1890 {1890 */ { 1891 1891 if (conf.Get<int>("console")==0) 1892 1892 return RunShell<LocalShell, StateMachineDim>(conf);
Note:
See TracChangeset
for help on using the changeset viewer.