From: David Galloway Date: Fri, 28 Oct 2016 19:49:31 +0000 (-0400) Subject: Use "become: true" for users role X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F286%2Fhead;p=ceph-cm-ansible.git Use "become: true" for users role This is needed if the users role is called manually. Typically it's called via the common role and "become: true" is inherited. But in the case of just needing to update update the teuthology_user's pubkeys with @all.pub, just calling the users role manually is quicker. sudo access is obviously required to modify users and groups. Signed-off-by: David Galloway --- diff --git a/users.yml b/users.yml index 55050012..7c801122 100644 --- a/users.yml +++ b/users.yml @@ -2,3 +2,4 @@ - hosts: all roles: - users + become: true