aboutsummaryrefslogtreecommitdiff
blob: 7fc3ec5dd3666a72c9aebf8dbbad902872946b38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
  - 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
Powered by cgit v1.2.3 (git 2.41.0)