diff options
author | Lorenz Kästle <lorenz.kaestle@netways.de> | 2021-06-25 12:12:48 +0200 |
---|---|---|
committer | Lorenz Kästle <lorenz.kaestle@netways.de> | 2021-06-25 12:12:48 +0200 |
commit | 6e5ee70d07c0a8515acdc3ad52716285a4b7f77b (patch) | |
tree | 96e35dd0b489d65c4f805a0a3820560b40a6af77 /plugins | |
parent | b02bcd4870a81d0ba4d4070d3cfc32a1aac61aad (diff) | |
download | monitoring-plugins-6e5ee70d07c0a8515acdc3ad52716285a4b7f77b.tar.gz |
Let ssh decide if a host is valid, enables usage of ssh .config file
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_by_ssh.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/check_by_ssh.c b/plugins/check_by_ssh.c index 13d8bc3b..485bf3be 100644 --- a/plugins/check_by_ssh.c +++ b/plugins/check_by_ssh.c @@ -230,7 +230,6 @@ process_arguments (int argc, char **argv) timeout_interval = atoi (optarg); break; case 'H': /* host */ - host_or_die(optarg); hostname = optarg; break; case 'p': /* port number */ @@ -329,7 +328,6 @@ process_arguments (int argc, char **argv) if (c <= argc) { die (STATE_UNKNOWN, _("%s: You must provide a host name\n"), progname); } - host_or_die(argv[c]); hostname = argv[c++]; } |