blob: 7fc3ec5dd3666a72c9aebf8dbbad902872946b38 (
plain) (
tree)
|
|
---
- name: Install Mastodon dependencies
hosts: localhost
become: true
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
|