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/keepalived/files/vrrp_script.sh b/keepalived/files/vrrp_script.sh
index d1fca94..1468f21 100644
--- a/keepalived/files/vrrp_script.sh
+++ b/keepalived/files/vrrp_script.sh
@@ -1 +1,2 @@
+#!/bin/sh
{{ script.content }}
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}
}