mirror of
https://github.com/frappe/bench.git
synced 2024-11-12 00:06:36 +00:00
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
---
|
|
|
|
- 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
|
|
- libssl1.0-dev
|
|
- libwebp-dev
|
|
- libxext6
|
|
- libxrender1
|
|
- libxslt1-dev
|
|
- libxslt1.1
|
|
- libffi-dev
|
|
- ntp # Clock synchronization
|
|
- postfix # Mail Server
|
|
- python3-dev # Installing python developer suite
|
|
- python-tk
|
|
- screen # To aid ssh sessions with connectivity problems
|
|
- vim # Is that supposed to be a question!?
|
|
- xfonts-75dpi
|
|
- xfonts-base
|
|
- zlib1g-dev
|
|
- apt-transport-https
|
|
- libsasl2-dev
|
|
- libldap2-dev
|
|
- libcups2-dev
|
|
- pv # Show progress during database restore
|
|
|
|
- include_tasks: debian.yml
|
|
when: ansible_distribution == 'Debian'
|
|
|
|
- include_tasks: ubuntu.yml
|
|
when: ansible_distribution == 'Ubuntu'
|
|
|
|
...
|