mirror of
https://github.com/gnustep/libs-ec.git
synced 2025-02-15 08:01:42 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/ec/trunk@38434 72102866-910b-0410-8b05-ffd578937521
70 lines
1.9 KiB
Text
70 lines
1.9 KiB
Text
{
|
|
/* The main configuration file.
|
|
*/
|
|
* = {
|
|
/* Common section for any/all hosts
|
|
*/
|
|
* = {
|
|
/* Common section for all processes on any/all hosts.
|
|
*/
|
|
};
|
|
Feep = {
|
|
/* Section for the process Feep on any/all hosts.
|
|
*/
|
|
};
|
|
Foo = {
|
|
/* Section for the process Foo on any/all hosts.
|
|
*/
|
|
};
|
|
};
|
|
localhost = {
|
|
/* Section for the host named localhost
|
|
*/
|
|
* = {
|
|
/* Common section for any/all processses on localhost.
|
|
*/
|
|
};
|
|
Bar = {
|
|
/* Section for process Bar on localhost
|
|
*/
|
|
};
|
|
Foo = {
|
|
/* Section for process Foo on localhost
|
|
*/
|
|
};
|
|
Command = {
|
|
/* Section for Command server on localhost
|
|
*/
|
|
Launch = {
|
|
Foo = {
|
|
Prog = "/usr/GNUstep/Local/Tools/Foo"; // Full path to binary
|
|
Home = "~xxx/Test"; // Directory to run in
|
|
Args = ("-Debug", "YES"); // Args to launch with
|
|
Auto = NO; // Auto-launch?
|
|
KeepStandardInput = YES; // Don't close stdin
|
|
KeepStandardOutput = YES; // Don't close stdout
|
|
KeepStandardError = YES; // Don't close stderr
|
|
};
|
|
Bar = {
|
|
Prog = "Bar"; // RName of binary
|
|
Home = "~xxx/Test"; // Directory to run in
|
|
Args = ("-Debug", "YES"); // Args to launch with
|
|
Auto = YES; // Auto-launch?
|
|
};
|
|
Feep = {
|
|
Prog = "Feep"; // RName of binary
|
|
Home = "~xxx/Test"; // Directory to run in
|
|
Auto = YES; // Auto-launch?
|
|
};
|
|
};
|
|
/* Specify launch order ... Feep first, Bar second
|
|
* Processes not listed here are launched in lexicographical order
|
|
* after any processes which are listed.
|
|
*/
|
|
LaunchOrder = (
|
|
Feep, // Launch Feep first
|
|
Bar // Launch Bar second
|
|
);
|
|
};
|
|
};
|
|
}
|