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 /roles/openshift_expand_partition | |
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 '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: |