From d1e4d64fd6adcc820e83082deb62b0a0b90fc912 Mon Sep 17 00:00:00 2001 From: raul Date: Mon, 10 Jun 2024 12:42:51 +0200 Subject: [PATCH] Add sample-config folder --- sample-config/clients.json | 14 ++++++++++++++ sample-config/tiamat.toml | 9 +++++++++ tiamat.toml.example | 4 ---- 3 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 sample-config/clients.json create mode 100644 sample-config/tiamat.toml delete mode 100644 tiamat.toml.example diff --git a/sample-config/clients.json b/sample-config/clients.json new file mode 100644 index 0000000..68a886b --- /dev/null +++ b/sample-config/clients.json @@ -0,0 +1,14 @@ +{ + "Date": "2024-06-10T09:22:29.047338443+02:00", + "List": [ + { + "Username": "sample_user", + "UID": "1000", + "GID": "1000", + "OperatingSystem": "linux", + "Hostname": "sample_hostname", + "PublicIP": "127.0.0.1", + "LocalIP": "127.0.0.1" + } + ] +} diff --git a/sample-config/tiamat.toml b/sample-config/tiamat.toml new file mode 100644 index 0000000..ccc8030 --- /dev/null +++ b/sample-config/tiamat.toml @@ -0,0 +1,9 @@ +[Server] +# Port to use for web interface +#WebPort = "8080" + +# Port to use for communicating with clients +#Port = "1302" + +# Path to look for clients in +#ClientPath = "/home/raul/.config/tiamat/clients.json" diff --git a/tiamat.toml.example b/tiamat.toml.example deleted file mode 100644 index 9bf85dd..0000000 --- a/tiamat.toml.example +++ /dev/null @@ -1,4 +0,0 @@ -[Server] -WebPort = "8080" -Port = "1302" -ClientPath = "/home/raul/.config/tiamat/clients.json"