1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Experiment: comment out Ansible tags in 25 files

This commit is contained in:
root 2020-01-13 20:41:03 -05:00
parent 6e6fab170d
commit 780ed4a955
25 changed files with 82 additions and 142 deletions

View file

@ -14,8 +14,7 @@
- php{{ php_version }}-xmlrpc
state: present
when: is_debuntu | bool
tags:
- download
#tags: download
- name: Install php{{ php_version }}-xml (ubuntu or debian 9+)
package:
@ -45,18 +44,15 @@
- php-xmlrpc
state: present
when: not is_debuntu
tags:
- download
#tags: download
- include_tasks: centos.yml
when: ansible_distribution == "CentOS"
tags:
- download
#tags: download
- include_tasks: fedora.yml
when: ansible_distribution == "Fedora"
tags:
- download
#tags: download
# 2019-07-03 @jvonau @holta: the next 50 lines (6 stanzas) double MariaDB's
@ -129,7 +125,7 @@
src: my.cnf.j2
dest: /root/.my.cnf
owner: root
mode: 0600
mode: '0600'
when: mysql_enabled | bool
# 'localhost' needs to be the last item for idempotency, see