diff --git a/source/installation/install_steps_ubuntu.md b/source/installation/install_steps_ubuntu.md index 5ecefa9..ec9e789 100644 --- a/source/installation/install_steps_ubuntu.md +++ b/source/installation/install_steps_ubuntu.md @@ -67,6 +67,20 @@ Save (Strg-O) and close (Strg-X) The BFFH-server can be found at the /target/release folder. Prior to starting the system you need to copy the files from `bffh/examples` to `bffh/target/release/examples` This ist best done by using the GUI filemanager. +To get at least minimum functionality the bffh.dhall should be modified. The lines: + + `-- , init_connections = [] : List { machine : Text, initiator : Text }` + ` , init_connections = [{ machine = "Testmachine", initiator = "Initiator" }]` + ` , initiators = --{=}` + ` { Initiator = { module = "Dummy", params = { uid = "Testuser" } } }` + +should be modified to: + + `, init_connections = [] : List { machine : Text, initiator : Text }` + ` --, init_connections = [{ machine = "Testmachine", initiator = "Initiator" }]` + ` , initiators = {=}` + ` --{ Initiator = { module = "Dummy", params = { uid = "Testuser" } } }` + To start the server change into the directory by using `cd target/release` and using: `./diflouroborane -c examples/bffh.dhall --load examples`