X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=setup%2Fclass_setupStep_Config3.inc;h=ab31a3f3f3e2c72bf006c2069d0b7a0922eda0ea;hb=68503ecbb4d310b61ef8f1f32003fc739bacb237;hp=1721d561a6b549bd05e662cec2c9b9e49bc546db;hpb=65d8680e8c4daee4ce2cb13b0bcf4313bde004db;p=gosa.git diff --git a/setup/class_setupStep_Config3.inc b/setup/class_setupStep_Config3.inc index 1721d561a..ab31a3f3f 100644 --- a/setup/class_setupStep_Config3.inc +++ b/setup/class_setupStep_Config3.inc @@ -22,10 +22,12 @@ class Step_Config3 extends setup_step { + var $header_image= "images/ldapserver.png"; var $optional = array( "strict_units" => false, "forceglobals" => true, "forcessl" => false, + "ldapstats" => false, "warnssl" => true, "ppd_path" => "/var/spool/ppd/", "ppd_path_active" => FALSE, @@ -44,32 +46,23 @@ class Step_Config3 extends setup_step "notifydir" => "", "notifydir_active" => FALSE, - "noprimarygroup" => FALSE, - "smbhash" => 'SMBHASH'); + "kioskpath" => "/var/spool/kiosk", + "kioskpath_active" => FALSE, + + "noprimarygroup" => FALSE); function Step_Config3() { $this->update_strings(); - - /* Look for samba password generation method */ - if(file_exists("/usr/bin/mkntpasswd")){ - $pwdhash = "/usr/bin/mkntpasswd"; - } elseif (preg_match("/^Usage: mkntpwd /", shell_exec ("mkntpwd 2>&1"))){ - $pwdhash= "mkntpwd"; - } else { - $pwdhash= 'perl -MCrypt::SmbHash -e "print join(q[:], ntlmgen \$ARGV[0]), $/;"'; - } - - $this->optional['smbhash'] = $pwdhash; } function update_strings() { $this->s_title = _("GOsa settings 3/3"); - $this->s_title_long = _("GOsa generic settings, page 3/3"); - $this->s_info = _("This dialog allows you to setup GOsa behaviour"); + $this->s_title_long = _("GOsa settings 3/3"); + $this->s_info = _("Tweak some GOsa core behaviour"); } @@ -96,7 +89,7 @@ class Step_Config3 extends setup_step } } - foreach(array("strict_units","noprimarygroup","forceglobals","forcessl","warnssl","compile","debuglevel","session_lifetime","smbhash") as $name){ + foreach(array("strict_units","noprimarygroup","forceglobals","forcessl","ldapstats","warnssl","compile","debuglevel","session_lifetime") as $name){ if(isset($_POST[$name])){ $this->optional[$name] = stripslashes($_POST[$name]); } @@ -129,6 +122,15 @@ class Step_Config3 extends setup_step $this->optional['mailQueueScriptPath_active'] = FALSE; } + if(isset($_POST['kioskpath_active'])){ + $this->optional['kioskpath_active'] = TRUE; + if(isset($_POST['kioskpath'])){ + $this->optional['kioskpath'] = $_POST['kioskpath']; + } + }else{ + $this->optional['kioskpath_active'] = FALSE; + } + if(isset($_POST['auto_network_hook_active'])){ $this->optional['auto_network_hook_active'] = TRUE; if(isset($_POST['auto_network_hook'])){