Fix some indentation errors in common/tasks/main.yml

This commit is contained in:
staticsafe 2017-11-24 12:47:18 -05:00
parent ea4cba1723
commit 3ab2524ba0
1 changed files with 31 additions and 31 deletions

View File

@ -18,44 +18,44 @@
- name: Add Nodesource apt key - name: Add Nodesource apt key
apt_key: url=https://deb.nodesource.com/gpgkey/nodesource.gpg.key state=present apt_key: url=https://deb.nodesource.com/gpgkey/nodesource.gpg.key state=present
- name: Add Nodesource apt repositories - name: Add Nodesource apt repositories
apt_repository: repo={{item}} state=present apt_repository: repo={{ item }} state=present
with_items: with_items:
- deb https://deb.nodesource.com/node_6.x xenial main - deb https://deb.nodesource.com/node_6.x xenial main
- deb-src https://deb.nodesource.com/node_6.x xenial main - deb-src https://deb.nodesource.com/node_6.x xenial main
- name: Add Yarnpkg apt key - name: Add Yarnpkg apt key
apt_key: url=https://dl.yarnpkg.com/debian/pubkey.gpg state=present apt_key: url=https://dl.yarnpkg.com/debian/pubkey.gpg state=present
- name: Add Yarnpkg apt repository - name: Add Yarnpkg apt repository
apt-repository: repo=deb https://dl.yarnpkg.com/debian/ stable main state=present apt-repository: repo=deb https://dl.yarnpkg.com/debian/ stable main state=present
# Note that we don't install nginx, letsencrypt, postgresql and redis here, that will be in different roles # Note that we don't install nginx, letsencrypt, postgresql and redis here, that will be in different roles
- name: Update apt cache and install various dependencies - name: Update apt cache and install various dependencies
apt: name={{item}} state=latest update_cache=yes apt: name={{ item }} state=latest update_cache=yes
with_items: with_items:
- imagemagick - imagemagick
- ffmpeg - ffmpeg
- libpq-dev - libpq-dev
- libxml2-dev - libxml2-dev
- libxslt1-dev - libxslt1-dev
- file - file
- git-core - git-core
- g++ - g++
- libprotobuf-dev - libprotobuf-dev
- protobuf-compiler - protobuf-compiler
- pkg-config - pkg-config
- nodejs - nodejs
- gcc - gcc
- autoconf - autoconf
- bison - bison
- build-essential - build-essential
- libssl-dev - libssl-dev
- libyaml-dev - libyaml-dev
- libreadline6-dev - libreadline6-dev
- zlib1g-dev - zlib1g-dev
- libncurses5-dev - libncurses5-dev
- libffi-dev - libffi-dev
- libgdbm3 - libgdbm3
- libgdbm-dev - libgdbm-dev
- yarn - yarn
- libidn11-dev - libidn11-dev
- libicu-dev - libicu-dev
- name: Add mastodon system user - name: Add mastodon system user
user: name=mastodon state=present user: name=mastodon state=present