diff options
author | Markos Chandras <mchandras@suse.de> | 2017-05-10 11:39:35 +0100 |
---|---|---|
committer | Markos Chandras <mchandras@suse.de> | 2017-05-11 23:42:12 +0100 |
commit | 0d56d0a918fcd8a71773a155ba1d0c27c96b7c88 (patch) | |
tree | b57ccde1653bfe24480532eacda5be74f9b22497 /prototypes/xci | |
parent | 9cb8ab17a12852824a49b02e7b634e40467ad7e6 (diff) |
prototypes: xci: configure-localhost: Use 'connection: local'
Since we are operating on localhost, there is no need to do that via ssh
so we use 'connection: local' instead. Moreover, we do not need to
execute everything as root so we drop the remote user directive.
Change-Id: Ib2127edad29e2da1cd1beebf42cb8f0d278ce3ad
Signed-off-by: Markos Chandras <mchandras@suse.de>
Diffstat (limited to 'prototypes/xci')
-rw-r--r-- | prototypes/xci/playbooks/configure-localhost.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prototypes/xci/playbooks/configure-localhost.yml b/prototypes/xci/playbooks/configure-localhost.yml index 34b974cd1..e2024dd86 100644 --- a/prototypes/xci/playbooks/configure-localhost.yml +++ b/prototypes/xci/playbooks/configure-localhost.yml @@ -8,7 +8,7 @@ # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## - hosts: localhost - remote_user: root + connection: local vars_files: - ../var/{{ ansible_os_family }}.yml - ../var/opnfv.yml |