#!/bin/sh

# cheesy hack to bury the local nagios mysql userid/password
# here away from prying CGI eyes

# warning: a cheesy hack

PATH=/usr/local/nagios/libexec:$PATH
export PATH

exec check_mysql -u nagios -p nagios "$@"
