diff --git a/db.yml b/db.yml new file mode 100644 index 0000000..91f9cfe --- /dev/null +++ b/db.yml @@ -0,0 +1,10 @@ +- name: Initialize db servers + become: yes + hosts: webservers + tasks: + - name: ensure mysql is at the latest version + apt: + update_cache: y + dpkg_options: 'force-confnew,force-confdef' + name: mysql + state: latest \ No newline at end of file