Update monitor-all.sh
tweak
This commit is contained in:
parent
6c643e39d1
commit
a697e5af52
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ while true; do
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Skip instances based on onboot and templates
|
# Skip instances based on onboot and templates
|
||||||
onboot=$($config_cmd $instance | grep onboot | grep -q "onboot: 0" && echo "true" || echo "false")
|
onboot=$($config_cmd $instance | grep -q "onboot: 0" || ( ! $config_cmd $instance | grep -q "onboot" ) && echo "true" || echo "false")
|
||||||
template=$($config_cmd $instance | grep template | grep -q "template:" && echo "true" || echo "false")
|
template=$($config_cmd $instance | grep template | grep -q "template:" && echo "true" || echo "false")
|
||||||
|
|
||||||
if [ "$onboot" == "true" ]; then
|
if [ "$onboot" == "true" ]; then
|
||||||
|
|
Loading…
Reference in a new issue