15 lines
394 B
Plaintext
15 lines
394 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
retcode=0
|
||
|
for host in `ansible -i "examples/msn0.yml" --list-hosts managed | grep -v ' hosts '`; do
|
||
|
if [ ! -f roles/ShadowArch/files/motd/"$host" ]; then
|
||
|
echo "Need MOTD for $host"
|
||
|
retcode=1;
|
||
|
fi
|
||
|
if [ ! -f roles/Sharingan/files/monit/hostdefs/"$host" ]; then
|
||
|
echo "Need Sharingan-Data file for $host"
|
||
|
retcode=1;
|
||
|
fi
|
||
|
done
|
||
|
exit $retcode
|