diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-02-25 15:02:55 +0100 |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-07 23:38:50 +0100 |
commit | d35c43e95f9efed3ef89bee288b8ec8f65ad2014 (patch) | |
tree | 0c2b22b8bf2dbf54347aa760fc88e0e1f25ebb1e /plugins/check_users.d/config.h | |
parent | 53247ae748174ddb639bb5fd9a19c8a6ad121717 (diff) | |
download | monitoring-plugins-d35c43e95f9efed3ef89bee288b8ec8f65ad2014.tar.gz |
Revert "Migrate check_users to new ouput infrastructure"
This reverts commit 10086edbf03fd807794bcfb3fff626da69a9fdb2.
Diffstat (limited to 'plugins/check_users.d/config.h')
-rw-r--r-- | plugins/check_users.d/config.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/plugins/check_users.d/config.h b/plugins/check_users.d/config.h deleted file mode 100644 index 35b7b7f8..00000000 --- a/plugins/check_users.d/config.h +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include "output.h" | ||
4 | #include "thresholds.h" | ||
5 | typedef struct check_users_config { | ||
6 | mp_thresholds thresholds; | ||
7 | |||
8 | bool output_format_is_set; | ||
9 | mp_output_format output_format; | ||
10 | } check_users_config; | ||
11 | |||
12 | check_users_config check_users_config_init() { | ||
13 | check_users_config tmp = { | ||
14 | .thresholds = mp_thresholds_init(), | ||
15 | |||
16 | .output_format_is_set = false, | ||
17 | }; | ||
18 | return tmp; | ||
19 | } | ||