mirror of
https://github.com/ubf/ubf.git
synced 2026-04-17 18:26:23 +00:00
34 lines
484 B
Plaintext
34 lines
484 B
Plaintext
+NAME("meta_server").
|
|
|
|
+VSN("ubf1.0").
|
|
|
|
+INFO("I am a meta server - I start other servers").
|
|
|
|
+DESCRIPTION("
|
|
To program the meta server
|
|
see http://www.sics.se/~joe/ubf.html
|
|
").
|
|
|
|
+SERVICES("file_server", "irc_server", "test_server").
|
|
|
|
+STATE start
|
|
info => string() & start;
|
|
description => string() & start;
|
|
services => [string()] & start;
|
|
contract => term() & start;
|
|
help => string() & start;
|
|
{startService, string()} => ok & start
|
|
| {error, term()} & start.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|