Ansible – massively fix bash shellshock
Since the recently discovered bash vulnerabilty is forcing many IT specialist to run massive update to their systems, here you can find a simple ansible script to immediately update all your servers at once, would they be APT or YUM based. — – hosts: “{{deploy_host}}” remote_user: ansible_user sudo: yes vars: pkg_list_deb: – bash pkg_list_rpm: – bash tasks:…