Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
coolbung committed Dec 28, 2016
1 parent d0aad8e commit 37d32d8
Showing 1 changed file with 29 additions and 6 deletions.
35 changes: 29 additions & 6 deletions environment-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,43 @@
# apt: name=nautilus-image-converter state=present

roles:
- { role: cmprescott.chrome, tags: devtools }
- role: cmprescott.chrome
tags:
- devtools
- chrome

- { role: geerlingguy.apache, tags: lamp }
- { role: geerlingguy.php, tags: lamp, php_install_version: "5.6" }
- { role: geerlingguy.php, tags: lamp, php_install_version: "7.0" }

- role: geerlingguy.php
tags: lamp
php_install_version: "{{item}}"
with_items:
- "5.6"
- "7.0"

- { role: geerlingguy.apache-php-fpm, tags: lamp }
- { role: calebwoods.bash_command, command: 'sudo service apache2 stop' }
- role: calebwoods.bash_command
command: 'sudo service apache2 stop'
tags: lamp

- { role: geerlingguy.nginx, tags: lamp }

- role: geerlingguy.mysql
ignore_errors: yes
tags:
- devtools
- mysql
- { role: geerlingguy.composer, tags: devtools }
- { role: nicolai86.phantomjs }

- role: geerlingguy.composer
tags:
- devtools
- composer

- role: nicolai86.phantomjs
tags:
- devtools
- phantomjs

- role: geerlingguy.java
ignore_errors: yes
when: "ansible_os_family == 'Debian'"
Expand Down

0 comments on commit 37d32d8

Please sign in to comment.