From 0e6097d9aef0347343e1d877cb33002ec28eaa4a Mon Sep 17 00:00:00 2001 From: David Galloway Date: Fri, 28 Oct 2016 15:49:31 -0400 Subject: [PATCH] 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 --- users.yml | 1 + 1 file changed, 1 insertion(+) 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 -- 2.47.3