aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_mysql.c
diff options
context:
space:
mode:
authorGravatar Robin Sonefors <robin.sonefors@op5.com> 2013-05-10 17:21:34 +0200
committerGravatar Jacob Hansen <jhansen@op5.com> 2019-03-21 13:54:19 +0100
commit2bc4cc99d2c3fdbbd06af862cb0ae1098895f860 (patch)
treecb38d9d84d3c2118d7904a38919afa2744eef22d /plugins/check_mysql.c
parent97bb142b144c7ae128cc69033e620906c95562c8 (diff)
downloadmonitoring-plugins-2bc4cc99d2c3fdbbd06af862cb0ae1098895f860.tar.gz
check_mysql: Allow sockets to be specified to -H
The help text says that -H accepts a "unix socket (must be an absolute path)". Now that actually corresponds to reality. Signed-off-by: Robin Sonefors <robin.sonefors@op5.com>
Diffstat (limited to 'plugins/check_mysql.c')
-rw-r--r--plugins/check_mysql.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c
index 5773afd9..0cba50e6 100644
--- a/plugins/check_mysql.c
+++ b/plugins/check_mysql.c
@@ -379,6 +379,9 @@ process_arguments (int argc, char **argv)
if (is_host (optarg)) {
db_host = optarg;
}
+ else if (*optarg == '/') {
+ db_socket = optarg;
+ }
else {
usage2 (_("Invalid hostname/address"), optarg);
}