blob: 354390c20a66a6b384279a42814c0abe50bcc835 (
plain) (
tree)
|
|
---
- name: Install Mastodon dependencies
hosts: localhost
tasks:
- name: Install required packages
apt:
name:
- imagemagick
- ffmpeg
- libpq-dev
- libxml2-dev
- libxslt1-dev
- file
- libprotobuf-dev
- protobuf-compiler
- pkg-config
- autoconf
- bison
- libssl-dev
- libyaml-dev
- libreadline6-dev
- zlib1g-dev
- libncurses5-dev
- libffi-dev
- libgdbm-dev
- redis-server
- redis-tools
- libidn11-dev
- libicu-dev
- libjemalloc-dev
update_cache: true
|