diff options
author | Petr Špaček <petr.spacek@nic.cz> | 2020-04-22 10:18:56 +0200 |
---|---|---|
committer | Vladimír Čunát <vladimir.cunat@nic.cz> | 2020-04-27 15:59:35 +0200 |
commit | 392515c62f4e9c5ca909c7d8131f30c34c16f9e1 (patch) | |
tree | e4f58d949bd63b046ff5cfdffedf54ea75042174 /daemon/main.c | |
parent | Merge branch 'docker_debug' into 'master' (diff) | |
download | knot-resolver-392515c62f4e9c5ca909c7d8131f30c34c16f9e1.tar.xz knot-resolver-392515c62f4e9c5ca909c7d8131f30c34c16f9e1.zip |
daemon: warn that non-Linux platforms are untested
Hopefully this will help to set right expectations.
Diffstat (limited to 'daemon/main.c')
-rw-r--r-- | daemon/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/daemon/main.c b/daemon/main.c index 09667b5c..f936c645 100644 --- a/daemon/main.c +++ b/daemon/main.c @@ -513,6 +513,10 @@ int main(int argc, char **argv) strerror(errno)); fflush(stderr); } + if (strcmp("linux", OPERATING_SYSTEM) != 0) + kr_log_info("[warn] Knot Resolver is tested on Linux, other platforms might exhibit bugs.\n" + "Please report issues to https://gitlab.labs.nic.cz/knot/knot-resolver/issues/\n" + "Thank you for your time and interest!\n"); the_args = &the_args_value; args_init(the_args); |