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 /roles/openshift_expand_partition | |
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 'roles/openshift_expand_partition')
-rw-r--r-- | roles/openshift_expand_partition/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_expand_partition/README.md b/roles/openshift_expand_partition/README.md index aed4ec871..c9c7b378c 100644 --- a/roles/openshift_expand_partition/README.md +++ b/roles/openshift_expand_partition/README.md @@ -45,7 +45,7 @@ space on /dev/xvda, and the file system will be expanded to fill the new partition space. - hosts: mynodes - sudo: no + become: no remote_user: root gather_facts: no roles: @@ -68,7 +68,7 @@ partition space. * Create an ansible playbook, say `expandvar.yaml`: ``` - hosts: mynodes - sudo: no + become: no remote_user: root gather_facts: no roles: |