diff options
| author | Rich Megginson <rmeggins@redhat.com> | 2007-06-12 21:08:20 +0000 |
|---|---|---|
| committer | Rich Megginson <rmeggins@redhat.com> | 2007-06-12 21:08:20 +0000 |
| commit | b74967d111e7d6e73c5b8d90c8daae31a2d98522 (patch) | |
| tree | d3885812a748db877a8aaefbc4ee95154e0bcebc /ldap/admin/src/scripts/Setup.pm.in | |
| parent | 3c6758091e1d5bd2eaec52981410d7a01cb2bfa5 (diff) | |
| download | ds-b74967d111e7d6e73c5b8d90c8daae31a2d98522.tar.gz ds-b74967d111e7d6e73c5b8d90c8daae31a2d98522.tar.xz ds-b74967d111e7d6e73c5b8d90c8daae31a2d98522.zip | |
Resolves: bug 237356
Description: Move DS Admin Code into Admin Server
Fix Description: 1) Need to have $SILENT be greater than $CUSTOM so that dialog hiding works properly.
2) Need to have the ability to hide or show individual prompts in a dialog e.g. if using TLS/SSL, need to ask for the CA certificate filename, otherwise, not.
3) Need the ability to call a function to get the default yes or no answer for DialogYesNo
4) DialogYesNo should match answer case insensitively
Diffstat (limited to 'ldap/admin/src/scripts/Setup.pm.in')
| -rw-r--r-- | ldap/admin/src/scripts/Setup.pm.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldap/admin/src/scripts/Setup.pm.in b/ldap/admin/src/scripts/Setup.pm.in index d66fd7bb..67f6f21e 100644 --- a/ldap/admin/src/scripts/Setup.pm.in +++ b/ldap/admin/src/scripts/Setup.pm.in @@ -71,10 +71,10 @@ use File::Temp qw(tempfile tempdir); use SetupLog; # the setup types -$SILENT = 0; $EXPRESS = 1; $TYPICAL = 2; $CUSTOM = 3; +$SILENT = 4; # process command line options Getopt::Long::Configure(qw(bundling)); # bundling allows -ddddd |
