mirror of
https://github.com/frappe/bench.git
synced 2025-01-24 15:38:25 +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,42 +3,40 @@
|
|||||||
- name: "Setup prerequisites using yum"
|
- name: "Setup prerequisites using yum"
|
||||||
become: yes
|
become: yes
|
||||||
become_user: root
|
become_user: root
|
||||||
tasks:
|
yum: name={{ item }} state=present
|
||||||
- name: Install yum packages
|
with_items:
|
||||||
yum: name={{ item }} state=present
|
- bzip2-devel
|
||||||
with_items:
|
- cronie
|
||||||
- bzip2-devel
|
- dnsmasq
|
||||||
- cronie
|
- freetype-devel
|
||||||
- dnsmasq
|
- git
|
||||||
- freetype-devel
|
- htop
|
||||||
- git
|
- lcms2-devel
|
||||||
- htop
|
- libjpeg-devel
|
||||||
- lcms2-devel
|
- libtiff-devel
|
||||||
- libjpeg-devel
|
- libffi-devel
|
||||||
- libtiff-devel
|
- libwebp-devel
|
||||||
- libffi-devel
|
- libXext
|
||||||
- libwebp-devel
|
- libXrender
|
||||||
- libXext
|
- libzip-devel
|
||||||
- libXrender
|
- libffi-devel
|
||||||
- libzip-devel
|
- ntp
|
||||||
- libffi-devel
|
- openssl-devel
|
||||||
- ntp
|
- postfix
|
||||||
- openssl-devel
|
- python-devel
|
||||||
- postfix
|
- python-setuptools
|
||||||
- python-devel
|
- python-pip
|
||||||
- python-setuptools
|
- redis
|
||||||
- python-pip
|
- screen
|
||||||
- redis
|
- sudo
|
||||||
- screen
|
- tcl-devel
|
||||||
- sudo
|
- tk-devel
|
||||||
- tcl-devel
|
- vim
|
||||||
- tk-devel
|
- which
|
||||||
- vim
|
- xorg-x11-fonts-75dpi
|
||||||
- which
|
- xorg-x11-fonts-Type1
|
||||||
- xorg-x11-fonts-75dpi
|
- zlib-devel
|
||||||
- xorg-x11-fonts-Type1
|
- openssl-devel
|
||||||
- zlib-devel
|
- openldap-devel
|
||||||
- openssl-devel
|
|
||||||
- openldap-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…
x
Reference in New Issue
Block a user