Commit c46d5e3a authored by Kristopher Ruzic's avatar Kristopher Ruzic

add test-suite script (temp)

parent a3051e8b
#!/bin/bash
PLAYBOOK_REPOSITORY_URL=https://lab.nexedi.cn/rafael/slapos.package/repository/archive.tar.gz?ref=master
PLAYBOOK_FILE=test-suite.yml
#### Setup Ansible and load few libraries #####
BASE_SETUP_SCRIPT_MD5=98f8c42049a6a31a0c5c45b348acf289
wget --no-check-certificate https://deploy.nexedi.cn/base-setup -O /tmp/base-setup
if [ "`md5sum /tmp/base-setup | cut -f1 -d\ `" != "$BASE_SETUP_SCRIPT_MD5" ]; then
echo "ERROR: base-setup has wrong md5 `md5sum /tmp/base-setup | cut -f1 -d\ ` != $BASE_SETUP_SCRIPT_MD5"
exit 1
fi
source /tmp/base-setup
download_playbook $PLAYBOOK_REPOSITORY_URL
echo "Starting Ansible playbook:"
ansible-playbook $PLAYBOOK_FILE -i hosts --connection=local
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment