Ansible multiple hosts behind NAT port forwarding
I have 2 servers behind NAT, so they share the same IP address, SSH service runs on two different ports. Here is…
I have 2 servers behind NAT, so they share the same IP address, SSH service runs on two different ports. Here is…
To add a PPA repository using Ansible, use – name: add ppa apt_repository: validate_certs: no repo: ‘ppa:ondrej/php’ state: present Example — -…
Install ansible on Ubuntu How to add a PPA repository using Ansible? Ansible multiple hosts behind NAT
To install ansible on Ubuntu, run apt-get -y update apt-get -y install software-properties-common apt-add-repository ppa:ansible/ansible -y apt-get -y update apt-get -y install…