diff options
author | Andrew Butcher <abutcher@redhat.com> | 2016-04-25 14:06:38 -0400 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2016-04-25 15:25:08 -0400 |
commit | a5386b0f51a2b20f0b5c382663bb5827438da437 (patch) | |
tree | edd2459e6075867d8ccb13fc795bc00f076036ce /playbooks/common/openshift-node | |
parent | 12c2d75d84f76ddd806bffa4e3e4acc0c2f24f95 (diff) | |
download | openshift-a5386b0f51a2b20f0b5c382663bb5827438da437.tar.gz openshift-a5386b0f51a2b20f0b5c382663bb5827438da437.tar.bz2 openshift-a5386b0f51a2b20f0b5c382663bb5827438da437.tar.xz openshift-a5386b0f51a2b20f0b5c382663bb5827438da437.zip |
Replace deprecated sudo with become.
Diffstat (limited to 'playbooks/common/openshift-node')
-rw-r--r-- | playbooks/common/openshift-node/config.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/common/openshift-node/config.yml b/playbooks/common/openshift-node/config.yml index 897e91190..264935a63 100644 --- a/playbooks/common/openshift-node/config.yml +++ b/playbooks/common/openshift-node/config.yml @@ -105,7 +105,7 @@ name: "{{ item }}" groups: oo_containerized_master_nodes ansible_ssh_user: "{{ g_ssh_user | default(omit) }}" - ansible_sudo: "{{ g_sudo | default(omit) }}" + ansible_become: "{{ g_sudo | default(omit) }}" with_items: "{{ groups.oo_nodes_to_config | default([]) }}" when: hostvars[item].openshift.common.is_containerized | bool and (item in groups.oo_nodes_to_config and item in groups.oo_masters_to_config) |