Add all files needed to bring up VM and run agaric.com locally
This commit is contained in:
parent
52c8b60bac
commit
4d2bc0ee24
742 changed files with 24037 additions and 0 deletions
29
box/provisioning/roles/geerlingguy.mysql/tasks/main.yml
Normal file
29
box/provisioning/roles/geerlingguy.mysql/tasks/main.yml
Normal file
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
# Variable configuration.
|
||||
- include: variables.yml
|
||||
|
||||
# Setup/install tasks.
|
||||
- include: setup-RedHat.yml
|
||||
when: ansible_os_family == 'RedHat'
|
||||
static: no
|
||||
|
||||
- include: setup-Debian.yml
|
||||
when: ansible_os_family == 'Debian'
|
||||
static: no
|
||||
|
||||
- include: setup-Archlinux.yml
|
||||
when: ansible_os_family == 'Archlinux'
|
||||
static: no
|
||||
|
||||
- name: Check if MySQL packages were installed.
|
||||
set_fact:
|
||||
mysql_install_packages: "{{ (rh_mysql_install_packages is defined and rh_mysql_install_packages.changed)
|
||||
or (deb_mysql_install_packages is defined and deb_mysql_install_packages.changed)
|
||||
or (arch_mysql_install_packages is defined and arch_mysql_install_packages.changed) }}"
|
||||
|
||||
# Configure MySQL.
|
||||
- include: configure.yml
|
||||
- include: secure-installation.yml
|
||||
- include: databases.yml
|
||||
- include: users.yml
|
||||
- include: replication.yml
|
Loading…
Add table
Add a link
Reference in a new issue