From 5f51fbf816598caf73d837282efb7577b99a73ca Mon Sep 17 00:00:00 2001 From: polistern Date: Wed, 17 Nov 2021 19:17:52 +0000 Subject: [PATCH] Added new config parameter. --- docs/devs/building/unix.md | 7 +++++-- docs/user-guide/configuration.md | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/devs/building/unix.md b/docs/devs/building/unix.md index 42a4b21..5a4c52c 100644 --- a/docs/devs/building/unix.md +++ b/docs/devs/building/unix.md @@ -27,7 +27,7 @@ cmake # you may add VERBOSE=1 to cmdline for debugging - Put binary to `/usr/sbin/` ``` -sudo mv pboted /usr/sbin/pboted +sudo cp pboted /usr/sbin/pboted ``` ## CMake Options @@ -45,7 +45,9 @@ Also there is `-L` flag for CMake that could be used to list current cached opti ## Debian/Ubuntu: -_Tested with Debian 10 and Ubuntu 20.04._ +!!! note "Note" + + Tested with Debian 10 and Ubuntu 20.04. You will need a compiler and other tools that could be installed with `build-essential` and `debhelper` packages: @@ -64,6 +66,7 @@ sudo apt install \ libboost-thread-dev \ libmimetic-dev \ libssl-dev \ + pkg-config \ zlib1g-dev ``` diff --git a/docs/user-guide/configuration.md b/docs/user-guide/configuration.md index c0b5962..844d6ce 100644 --- a/docs/user-guide/configuration.md +++ b/docs/user-guide/configuration.md @@ -19,6 +19,7 @@ Run `pboted --help` to show builtin help message (default value of option will b | logclftime | Write full CLF-formatted date and time to log (default: write only time) | | host | pboted external IP for incoming connections | | port | UDP port to listen for incoming connections | +| storage | Limit for local storage usage (default: 50 MB) | !!! note "Note"