From 71dffbc28f0a1f3148d20412b25ae0727b51e4d9 Mon Sep 17 00:00:00 2001 From: Scott Buchanan Date: Tue, 16 Feb 2016 16:19:26 -0500 Subject: [PATCH] Fix leftover references to sudo instead of become Catching a few places that earlier PR #10788 missed. --- docsite/rst/playbooks_intro.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docsite/rst/playbooks_intro.rst b/docsite/rst/playbooks_intro.rst index 55cd3359be6..e43dfd475a7 100644 --- a/docsite/rst/playbooks_intro.rst +++ b/docsite/rst/playbooks_intro.rst @@ -180,9 +180,9 @@ Support for running things as another user is also available (see :doc:`become`) --- - hosts: webservers remote_user: yourname - sudo: yes + become: yes -You can also use sudo on a particular task instead of the whole play:: +You can also use become on a particular task instead of the whole play:: --- - hosts: webservers