h1. Using ansible Ansible is a software to perform automated updates and configuration management on remote servers over SSH. The site is: http://ansible.cc/ How we are using ansible? For every project, there is file doc/ssh_config.txt which is a part of standard ~/.ssh/config file related to project, contained server aliases. To transfer those aliases into Ansible 'hosts' file format, use the supplied Python program. There is admin project within UA2WEB which contains all different project groups into one file, the repository is accessible from: * ssh://root@hosting/ansible This also includes Playbook scenarios to perform various support tasks. h2. Some examples of using it: Check GLSA:
ansible ua2web -u root -a "glsa-check -l -q"
Check if any of UA2WEB servers needs system update:
ansible ua2web -u root -a "emerge -up system"