From cdf54d872d0dd94f29e0b452edb306451d855e56 Mon Sep 17 00:00:00 2001 From: Trial97 Date: Mon, 7 Jun 2021 14:11:52 +0300 Subject: [PATCH] Added README.md for ansible integration scripts --- data/ansible/integration_tests/README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 data/ansible/integration_tests/README.md diff --git a/data/ansible/integration_tests/README.md b/data/ansible/integration_tests/README.md new file mode 100644 index 000000000..9cd0ae5a6 --- /dev/null +++ b/data/ansible/integration_tests/README.md @@ -0,0 +1,19 @@ +# Ansible for CGRateS integration tests + +Steps for running this ansible: +1. Configure a debian based virtual machine so you can connect to it without needing the password +2. Edit your ansible host file with the IP and the user of the machine like so: +``` +[all] +local ansible_host=192.168.56.203 ansible_ssh_user=trial97 + +[all:vars] +user=trial97 +``` + +3. Run the ansible: +``` +ansible-playbook main.yaml +``` + +4. Done!