Add missing shebang to vrrp_script
The shebang is missing from files/vrrp_script.sh which is used as
a default template for custom check scripts. In the 1.x version it had
no matter but the 2.x versions do not allow this.
Closes-Bug: PROD-35635
Change-Id: I708d7a45b2df570d2a6375ee58e67a0b1b4ed59c
diff --git a/tests/run_tests.sh b/tests/run_tests.sh
index 316692b..2735bf8 100755
--- a/tests/run_tests.sh
+++ b/tests/run_tests.sh
@@ -37,6 +37,7 @@
log_info "Setting up Python virtualenv"
virtualenv $VENV_DIR
source ${VENV_DIR}/bin/activate
+ python -m pip install "msgpack<1.0.0" "setuptools<45.0.0"
python -m pip install salt${PIP_SALT_VERSION}
}