mirror of
https://github.com/frappe/bench.git
synced 2024-11-14 09:14:04 +00:00
syntactical fix
This commit is contained in:
parent
93f25d7343
commit
1575c307e6
@ -34,9 +34,9 @@
|
|||||||
- libldap2-dev
|
- libldap2-dev
|
||||||
|
|
||||||
- include_tasks: debian.yml
|
- include_tasks: debian.yml
|
||||||
when: ansible_os_family == 'Debian'
|
when: ansible_distribution == 'Debian'
|
||||||
|
|
||||||
- include_tasks: ubuntu.yml
|
- include_tasks: ubuntu.yml
|
||||||
when: ansible_os_family == 'Ubuntu'
|
when: ansible_distribution == 'Ubuntu'
|
||||||
|
|
||||||
...
|
...
|
@ -3,8 +3,6 @@
|
|||||||
- name: "Setup prerequisites using yum"
|
- name: "Setup prerequisites using yum"
|
||||||
become: yes
|
become: yes
|
||||||
become_user: root
|
become_user: root
|
||||||
tasks:
|
|
||||||
- name: Install yum packages
|
|
||||||
yum: name={{ item }} state=present
|
yum: name={{ item }} state=present
|
||||||
with_items:
|
with_items:
|
||||||
- bzip2-devel
|
- bzip2-devel
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
- include_tasks: centos.yml
|
- include_tasks: centos.yml
|
||||||
when: ansible_distribution == 'CentOS'
|
when: ansible_distribution == 'CentOS'
|
||||||
|
|
||||||
@ -51,4 +52,5 @@
|
|||||||
|
|
||||||
- debug: var=mysql_secure_installation
|
- debug: var=mysql_secure_installation
|
||||||
when: mysql_secure_installation and mysql_root_password is defined
|
when: mysql_secure_installation and mysql_root_password is defined
|
||||||
|
|
||||||
...
|
...
|
||||||
|
Loading…
Reference in New Issue
Block a user