From c556fb6d950975dbbeb2daa499acea54c6687dfc Mon Sep 17 00:00:00 2001 From: Joris Date: Wed, 12 Jan 2022 16:25:25 +0000 Subject: [PATCH] Update install_steps_ubuntu.md --- source/installation/install_steps_ubuntu.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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`