mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-10 11:50:18 +01:00
14 lines
358 B
YAML
14 lines
358 B
YAML
---
|
|
- name: Check if MySQL is already installed.
|
|
stat: path=/etc/init.d/mysql
|
|
register: mysql_installed
|
|
|
|
- name: Update apt cache if MySQL is not yet installed.
|
|
apt: update_cache=yes
|
|
when: mysql_installed.stat.exists == false
|
|
|
|
- name: Ensure MySQL packages are installed.
|
|
apt: >
|
|
name={{ item }}
|
|
state=installed
|
|
with_items: mysql_packages
|