diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2019-09-04 22:38:25 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2019-09-04 22:38:25 +0200 |
commit | 67916686563a0ab610cc2a077a90b405b3e58e18 (patch) | |
tree | e40c64fc6071b5975ae797a4b0c70456f3be8ee0 | |
parent | 6db35a5230578e296d9f493b28e6330e22569c8f (diff) | |
download | conky-67916686563a0ab610cc2a077a90b405b3e58e18.tar.gz conky-67916686563a0ab610cc2a077a90b405b3e58e18.tar.bz2 conky-67916686563a0ab610cc2a077a90b405b3e58e18.tar.xz conky-67916686563a0ab610cc2a077a90b405b3e58e18.zip |
Just few fixes for paths in Nagios setup
l--------- | adei/adei | 1 | ||||
-rwxr-xr-x | adei/check_adei_control.sh | 2 | ||||
-rwxr-xr-x | adei/check_adei_source.sh | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/adei/adei b/adei/adei new file mode 120000 index 0000000..945c9b4 --- /dev/null +++ b/adei/adei @@ -0,0 +1 @@ +.
\ No newline at end of file diff --git a/adei/check_adei_control.sh b/adei/check_adei_control.sh index f6570e1..e9159ed 100755 --- a/adei/check_adei_control.sh +++ b/adei/check_adei_control.sh @@ -1,6 +1,6 @@ #!/bin/bash -. $(dirname "$0")/adei.sh +. $(dirname "$0")/lib/adei/adei.sh status=1 diff --git a/adei/check_adei_source.sh b/adei/check_adei_source.sh index dcec5bf..04b7257 100755 --- a/adei/check_adei_source.sh +++ b/adei/check_adei_source.sh @@ -1,6 +1,6 @@ #!/bin/bash -. $(dirname "$0")/adei.sh +. $(dirname "$0")/lib/adei/adei.sh adei_init "$@"; code=$? |