From f3a5d4883666c7e04e23cb454e28ccc83c54f04a Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Mon, 17 Oct 2011 11:48:03 +0200 Subject: Fixed: Unable to add external user for RunAs User for Sudo rules https://fedorahosted.org/freeipa/ticket/1987 There is no way to add root or any external user as a RunAs User for a Sudo Rule. --- install/ui/sudo.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install/ui/sudo.js b/install/ui/sudo.js index 8228951c3..af625661e 100644 --- a/install/ui/sudo.js +++ b/install/ui/sudo.js @@ -912,6 +912,7 @@ IPA.sudo.rule_details_runas_section = function(spec) { id: that.entity.name+'-runasruser_user', name: 'ipasudorunas_user', entity: that.entity, + external: 'ipasudorunasextuser', add_method: 'add_runasuser', remove_method: 'remove_runasuser', add_title: IPA.messages.association.add.ipasudorunas, @@ -946,6 +947,7 @@ IPA.sudo.rule_details_runas_section = function(spec) { id: that.entity.name+'-runasgroup_group', name: 'ipasudorunasgroup_group', entity: that.entity, + external: 'ipasudorunasextgroup', add_method: 'add_runasgroup', remove_method: 'remove_runasgroup', add_title: IPA.messages.association.add.ipasudorunasgroup, -- cgit