diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2012-11-20 18:08:57 +0100 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2012-11-29 09:37:49 +0100 |
commit | 730a5005676d6fb2639690f392420c5c876c5a32 (patch) | |
tree | 642bf519c9e081de01876e5a10d1b662c95ad1fb /install/ui/group.js | |
parent | ec20a74a599821806f62905b676ef4fd75f6c07d (diff) | |
download | freeipa-730a5005676d6fb2639690f392420c5c876c5a32.tar.gz freeipa-730a5005676d6fb2639690f392420c5c876c5a32.tar.xz freeipa-730a5005676d6fb2639690f392420c5c876c5a32.zip |
WebUI: Change of default value of type of new group back to POSIX
In FreeIPA 2.2, the default for group type was 'POSIX', in 3.0 it's 'normal' (non-posix). CLI's default is 'POSIX', Web UI should use 'POSIX' as well.
https://fedorahosted.org/freeipa/ticket/3270
Diffstat (limited to 'install/ui/group.js')
-rw-r--r-- | install/ui/group.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/ui/group.js b/install/ui/group.js index 875e67f02..8317d679f 100644 --- a/install/ui/group.js +++ b/install/ui/group.js @@ -153,7 +153,7 @@ IPA.group.entity = function(spec) { name: 'type', label: IPA.messages.objects.group.type, flags: ['no_command'], - default_value: 'normal', + default_value: 'posix', options: [ { value: 'normal', |