Skip to content

Commit

Permalink
Merge pull request ansible#87 from MacRonin/master
Browse files Browse the repository at this point in the history
Update lamp_simple to use remote_user
  • Loading branch information
tgerla committed Sep 15, 2014
2 parents 6bf14b0 + b7f5049 commit 59ba91f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lamp_simple/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@

- name: apply common configuration to all nodes
hosts: all
user: root
remote_user: root

roles:
- common

- name: configure and deploy the webservers and application code
hosts: webservers
user: root
remote_user: root

roles:
- web

- name: deploy MySQL and configure the databases
hosts: dbservers
user: root
remote_user: root

roles:
- db

0 comments on commit 59ba91f

Please sign in to comment.