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