blse2-public/common-debian/files/usr/lib/check_mk_agent/plugins/backup

12 lines
222 B
Plaintext
Raw Permalink Normal View History

2023-05-05 15:47:27 -04:00
#!/bin/bash
# Backup check for Check_MK
# Installed by BLSE 2.x ansible
SHARELIST=( $( cat /var/backups/shares ) )
echo "<<<backup>>>"
for SHARE in ${SHARELIST[@]}; do
echo "${SHARE} $( cat ${SHARE}/.backup )"
done