From 50bd284089460d6b7e9c4079afbf3969a2c5df79 Mon Sep 17 00:00:00 2001 From: Johannes Truschnigg Date: Sat, 19 Mar 2022 21:21:46 +0100 Subject: [PATCH] Add license to config suggester --- lagdetect.sh | 1 + lagdetect_suggest_config | 15 +++++++++++++++ 2 files changed, 16 insertions(+) diff --git a/lagdetect.sh b/lagdetect.sh index 460c92a..880d357 100755 --- a/lagdetect.sh +++ b/lagdetect.sh @@ -1,6 +1,7 @@ #!/bin/sh # Copyright (C)2022 Johannes Truschnigg (https://johannes.truschnigg.info/) +# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or diff --git a/lagdetect_suggest_config b/lagdetect_suggest_config index 40ba2ff..654abfe 100755 --- a/lagdetect_suggest_config +++ b/lagdetect_suggest_config @@ -1,5 +1,20 @@ #!/bin/sh +# Copyright (C)2022 Johannes Truschnigg (https://johannes.truschnigg.info/) +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + for p in sort sleep cat awk fping do type "${p}" >/dev/null || { printf 'FATAL: Required program "%s" not installed.\n' "${p}" >&2; exit 1; } -- 2.39.5