Blob Blame History Raw
#!/bin/bash

# Runs state.show_highstate using all localized grains' combinations

set -e

RUN_TEST="salt-call --local --retcode-passthrough state.show_highstate"

sed -i -e 's/\(city:\).*/\1 nuremberg/' -e 's/\(country:\).*/\1 de/' -e 's/\(virt_cluster:\).*/\1 atreju/'  pillar/id/${HOSTNAME}.sls
$RUN_TEST > /dev/null
echo "PASSED: country: de"

sed -i -e 's/\(city:\).*/\1 provo/' -e 's/\(country:\).*/\1 us/' -e 's/\(virt_cluster:\).*/\1 bryce/'  pillar/id/${HOSTNAME}.sls
$RUN_TEST > /dev/null
echo "PASSED: country: us"