Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ansible.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ force_handlers = True
inventory = hosts
nocows = 1
roles_path = vendor/roles
stdout_callback = prettify
vars_plugins = ~/.ansible/plugins/vars:/usr/share/ansible/plugins/vars:lib/trellis/plugins/vars
pipelining = True

Expand Down
1 change: 1 addition & 0 deletions deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
vars:
dynamic_user: false
roles:
- { role: ansible-output-prettify, tags: [always] }
- { role: connection, tags: [connection, always] }

- name: Deploy WP site
Expand Down
1 change: 1 addition & 0 deletions dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
remote_user: vagrant

roles:
- { role: ansible-output-prettify, tags: [always] }
- { role: common, tags: [common] }
- { role: fail2ban, tags: [fail2ban] }
- { role: ferm, tags: [ferm] }
Expand Down
3 changes: 3 additions & 0 deletions galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ roles:
- name: mailpit
src: roots.mailpit
version: v1.0.0

- src: https://github.com/roots/ansible-output-prettify.git
name: ansible-output-prettify
1 change: 1 addition & 0 deletions server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
hosts: web:&{{ env }}
gather_facts: false
roles:
- { role: ansible-output-prettify, tags: [always] }
- { role: connection, tags: [connection, always] }

- name: WordPress Server - Install LEMP Stack with PHP and MariaDB MySQL
Expand Down
Loading