From 35fd2addc62442b724d7853c7069344950600a14 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Mon, 1 Jun 2015 09:48:16 -0400 Subject: [PATCH] Remove runas from the list of become method choices since it's not implemented in ansible yet (although it is listed in their help docs) --- awx/main/models/credential.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/models/credential.py b/awx/main/models/credential.py index a8404e9f51..851a31e47d 100644 --- a/awx/main/models/credential.py +++ b/awx/main/models/credential.py @@ -43,7 +43,7 @@ class Credential(PasswordFieldsModel, CommonModelNameNotUnique): ('su', _('Su')), ('pbrun', _('Pbrun')), ('pfexec', _('Pfexec')), - ('runas', _('Runas')), + #('runas', _('Runas')), ] PASSWORD_FIELDS = ('password', 'ssh_key_data', 'ssh_key_unlock',