New command: check_statusfile

master
Emanuel Duss 2020-11-12 14:21:00 +01:00
parent e7c1b630ad
commit 00902fc035
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
---
description: |
This is the `check_statusfile` Nagios plugi plugin, available e.g. in `/usr/lib/nagios/plugins/`. The read file content is limited to the first line.
functions:
file-read:
- code: |
LFILE=file_to_read
check_statusfile "$LFILE"
suid:
- code: |
LFILE=file_to_read
./check_statusfile "$LFILE"
sudo:
- code: |
LFILE=file_to_read
sudo check_statusfile "$LFILE"
---