From 1e5391422143c17a94008a0703099c5f877e46fd 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(+) (limited to 'install/ui') diff --git a/install/ui/sudo.js b/install/ui/sudo.js index 46a558d85..cca9d3edf 100644 --- a/install/ui/sudo.js +++ b/install/ui/sudo.js @@ -948,6 +948,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, @@ -982,6 +983,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