diff options
author | Adam Young <ayoung@redhat.com> | 2011-07-05 17:59:05 -0400 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-07-06 21:52:00 +0000 |
commit | e4a444ba8159f890daa124d1c546b977a91b9f32 (patch) | |
tree | 3a8110eaff3d2d695c4a0592f0f920b361a6a4c3 /install/ui/test/bin | |
parent | aca908e1e4d08d52a95edca2013c510abe2d1788 (diff) | |
download | freeipa.git-e4a444ba8159f890daa124d1c546b977a91b9f32.tar.gz freeipa.git-e4a444ba8159f890daa124d1c546b977a91b9f32.tar.xz freeipa.git-e4a444ba8159f890daa124d1c546b977a91b9f32.zip |
HBAC deny warning
shows dialog if there are any HBAC deny rules. Dialog provides option to navigate to the HBAC page. Deny rules have their rule type value show up in red.
Only shows up fro administrators, not for self service users.
https://fedorahosted.org/freeipa/ticket/1421
Diffstat (limited to 'install/ui/test/bin')
-rwxr-xr-x | install/ui/test/bin/update_ipa_init.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/ui/test/bin/update_ipa_init.sh b/install/ui/test/bin/update_ipa_init.sh index 5cdeacaa..23852a26 100755 --- a/install/ui/test/bin/update_ipa_init.sh +++ b/install/ui/test/bin/update_ipa_init.sh @@ -17,4 +17,4 @@ fi -curl -v -H "Content-Type:application/json" -H "Accept:applicaton/json" --negotiate -u : --cacert /etc/ipa/ca.crt -d '{"method":"batch","params":[[ {"method":"json_metadata","params":[[],{}]}, {"method":"i18n_messages","params":[[],{}]}, {"method":"user_find","params":[[],{"whoami":"true","all":"true"}]}, {"method":"env","params":[[],{}]}, {"method":"dns_is_enabled","params":[[],{}]} ],{}],"id":1}' -X POST https://`hostname`/ipa/json | sed 's/[ \t]*$//' > $INIT_FILE +curl -v -H "Content-Type:application/json" -H "Accept:applicaton/json" --negotiate -u : --cacert /etc/ipa/ca.crt -d '{"method":"batch","params":[[{"method":"json_metadata","params":[[],{}]},{"method":"i18n_messages","params":[[],{}]},{"method":"user_find","params":[[],{"whoami":true,"all":true}]},{"method":"env","params":[[],{}]},{"method":"dns_is_enabled","params":[[],{}]},{"method":"hbacrule_find","params":[[],{"accessruletype":"deny"}]}],{}]}' -X POST https://`hostname`/ipa/json | sed 's/[ \t]*$//' > $INIT_FILE |