2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-23 12:39:01 +00:00
bench/playbooks/roles/common/tasks/debian_family.yml

42 lines
959 B
YAML
Raw Normal View History

2018-02-28 22:21:48 +00:00
---
- name: Install prerequisites using apt-get
become: yes
become_user: root
apt: pkg={{ item }} state=present force=yes
with_items:
- dnsmasq
- fontconfig
- git # Version control
- htop # Server stats
- libcrypto++-dev
- libfreetype6-dev
- liblcms2-dev
- libssl-dev
- libwebp-dev
- libxext6
- libxrender1
- libxslt1-dev
- libxslt1.1
- libffi-dev
- ntp # Clock synchronization
- postfix # Mail Server
- python-dev # Installing python developer suite
- python3-dev
- python-tk # Why !?
- screen
- vim
- xfonts-75dpi
- xfonts-base
- zlib1g-dev
- apt-transport-https
- libsasl2-dev
- libldap2-dev
- include_tasks: debian.yml
2018-02-28 22:45:50 +00:00
when: ansible_distribution == 'Debian'
2018-02-28 22:21:48 +00:00
- include_tasks: ubuntu.yml
2018-02-28 22:45:50 +00:00
when: ansible_distribution == 'Ubuntu'
2018-02-28 22:21:48 +00:00
...