You can use this Ansible roles to install full Opensips + Control Panel with one command. For some reason roles to install Opensips from ansible galaxy not working as expected. I have modified some roles to make it works. This will good only for Debian 10 and Centos 7. Most popular systems. Roles will install […]
Category: ansible
Ansible. part 1.
Example of using Ansible for checking online calls from many of servers from command line: Ansible check online calls from few servers through ssh:docs: https://docs.ansible.com/ansible/latest/installation_guide/intro_configuration.html Control node : apt update -yapt install ansible -y Create /etc/ansible/hosts file all: hosts: 123.123.123.123: 123.123.123.124: 123.123.123.125: 123.123.123.126: Check connecting to hosts: ansible all -m ping You may see error […]