diff options
author | Jason DeTiberus <detiber@gmail.com> | 2016-04-25 16:18:37 -0400 |
---|---|---|
committer | Jason DeTiberus <detiber@gmail.com> | 2016-04-25 16:18:37 -0400 |
commit | 4e01bd4a87088f53af309b36ce4da431888fcaf4 (patch) | |
tree | 557c508905cf93d2f37928b9fbc8600d2a416bdb /playbooks/libvirt/openshift-cluster/service.yml | |
parent | 3262718f8fc4658a3b223823244f1f78cb0eb6c8 (diff) | |
parent | a5386b0f51a2b20f0b5c382663bb5827438da437 (diff) | |
download | openshift-4e01bd4a87088f53af309b36ce4da431888fcaf4.tar.gz openshift-4e01bd4a87088f53af309b36ce4da431888fcaf4.tar.bz2 openshift-4e01bd4a87088f53af309b36ce4da431888fcaf4.tar.xz openshift-4e01bd4a87088f53af309b36ce4da431888fcaf4.zip |
Merge pull request #1804 from abutcher/v2-sudo
Replace deprecated sudo with become.
Diffstat (limited to 'playbooks/libvirt/openshift-cluster/service.yml')
-rw-r--r-- | playbooks/libvirt/openshift-cluster/service.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/playbooks/libvirt/openshift-cluster/service.yml b/playbooks/libvirt/openshift-cluster/service.yml index cd07c8701..6bd0516e3 100644 --- a/playbooks/libvirt/openshift-cluster/service.yml +++ b/playbooks/libvirt/openshift-cluster/service.yml @@ -18,7 +18,7 @@ add_host: name: "{{ item }}" ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" - ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" + ansible_become: "{{ deployment_vars[deployment_type].sudo }}" groups: g_service_masters with_items: "{{ g_master_hosts | default([]) }}" @@ -26,7 +26,7 @@ add_host: name: "{{ item }}" ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" - ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" + ansible_become: "{{ deployment_vars[deployment_type].sudo }}" groups: g_service_nodes with_items: "{{ g_node_hosts | default([]) }}" |