summaryrefslogtreecommitdiffstats
path: root/install/static/group.js
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2010-12-23 14:26:12 -0500
committerAdam Young <ayoung@redhat.com>2011-01-05 10:39:45 -0500
commit553e08afa6c583a36ed57f9c6e8aeee301b0bf34 (patch)
treec74fc612ad91588351c0776c5678c0b6000fa2f3 /install/static/group.js
parent0fc1d260c08d54f7189f20814f2ebc7cbb031918 (diff)
downloadfreeipa-553e08afa6c583a36ed57f9c6e8aeee301b0bf34.tar.gz
freeipa-553e08afa6c583a36ed57f9c6e8aeee301b0bf34.tar.xz
freeipa-553e08afa6c583a36ed57f9c6e8aeee301b0bf34.zip
posix checked check box for posix groups selected by default
Diffstat (limited to 'install/static/group.js')
-rw-r--r--install/static/group.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/install/static/group.js b/install/static/group.js
index 21345acc..c54df26e 100644
--- a/install/static/group.js
+++ b/install/static/group.js
@@ -83,7 +83,11 @@ function ipa_group_add_dialog(spec) {
that.add_field(ipa_text_widget({name:'cn', undo: false}));
that.add_field(ipa_text_widget({name:'description', undo: false}));
// TODO: Replace with i18n label
- that.add_field(ipa_checkbox_widget({name:'posix', label:'Is this a POSIX group?', undo: false}));
+ that.add_field(ipa_checkbox_widget({
+ name:'posix',
+ label:'Is this a POSIX group?',
+ undo: false,
+ checked:'checked'}));
that.add_field(ipa_text_widget({name:'gidnumber', undo: false}));
that.add_dialog_init();