role mastodon added
This commit is contained in:
14
roles/database/tasks/main.yml
Normal file
14
roles/database/tasks/main.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
# Load distro-specific variables
|
||||
- include_vars: "{{ ansible_distribution }}.yml"
|
||||
tags: always
|
||||
|
||||
- block:
|
||||
- debug:
|
||||
msg: Debug
|
||||
# install software
|
||||
- import_tasks: install_mysql.yml
|
||||
when: mysql == true
|
||||
- import_tasks: install_postgres.yml
|
||||
when: postgres == true
|
||||
- import_tasks: install_redis.yml
|
||||
when: redis == true
|
||||
Reference in New Issue
Block a user