-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.yml
60 lines (52 loc) · 1.14 KB
/
main.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
- hosts: localhost
connection: local
sudo: yes
vars_files:
- vars/git.yml
- vars/dotfiles.yml
- vars/mysql.yml
- vars/php.yml
- vars/main.yml
- vars/nodejs.yml
pre_tasks:
- include: tasks/ansible-setup.yml
- include: tasks/prepare.yml
roles:
- geerlingguy.git
- geerlingguy.dotfiles
- tersmitten.nano
- { role: geerlingguy.nginx, when: not drupal_nginx_conf_installed.stat.exists }
- adminer
- geerlingguy.php
- geerlingguy.mysql
- geerlingguy.composer
- drush
- qc
- drush_rr
- java
- tersmitten.phpstorm
- vcabourdin.chrome
- terminal
- git_power
- grafics
- slack
- xchat
- skype
- valentine94.sudoers
- tersmitten.nodejs
- tersmitten.virtualbox
- Oefenweb.mailcatcher
tasks:
- include: tasks/drupal_nginx_conf.yml
#- include: tasks/php_fpm_setup.yml
vars_prompt:
- name: "git_user_name"
prompt: "Git user name"
private: no
- name: "git_user_email"
prompt: "Git user email"
private: no
post_tasks:
- include: tasks/phpcs_complete.yml
- include: tasks/complete.yml