Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible-examples.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMacRonin <phardwick@thinaire.net>2014-09-15 20:51:20 +0400
committerMacRonin <phardwick@thinaire.net>2014-09-15 20:51:20 +0400
commitb7f5049993ddb3e3ed36d5a3b363e02b99d40bc4 (patch)
tree0ca6546e6efd974270ae469dd96811e196c332c6 /lamp_simple
parent6bf14b05c05cd23e082b3711beb2f083e03bec16 (diff)
Update lamp_simple to use remote_user
Update lamp_simple to use remote_user instead of user to avoid confusion..
Diffstat (limited to 'lamp_simple')
-rw-r--r--lamp_simple/site.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/lamp_simple/site.yml b/lamp_simple/site.yml
index eee7a70..f395725 100644
--- a/lamp_simple/site.yml
+++ b/lamp_simple/site.yml
@@ -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