2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-13 16:56:33 +00:00

syntactical fix

This commit is contained in:
Ameya Shenoy 2018-03-01 04:15:50 +05:30
parent 93f25d7343
commit 1575c307e6
No known key found for this signature in database
GPG Key ID: 735490161CD5C91E
3 changed files with 39 additions and 39 deletions

View File

@ -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'
...

View File

@ -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

View File

@ -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
...