From 920770467a072cf1573dcd19b313b2fc64b4a972 Mon Sep 17 00:00:00 2001 From: janw Date: Wed, 29 Nov 2006 10:00:15 +0000 Subject: [PATCH] Changed standard input handle. Now works on vserver, too. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@5244 594d385d-05f5-0310-b6e9-bd551577e9d8 --- contrib/fix_munged.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/contrib/fix_munged.php b/contrib/fix_munged.php index 2194e809d..754a03666 100755 --- a/contrib/fix_munged.php +++ b/contrib/fix_munged.php @@ -52,18 +52,18 @@ print("This script will try to convert all ldap entries that have the sambaMunge "before running.\n". "Do you want to continue (y/n)?\n"); -$handle= fopen("/dev/stdin","r"); +$handle= fopen("php://stdin","r"); $input=(fgets($handle,16)); fclose($handle); if(substr(strtolower($input),0,1)!="y") { exit(1); } /* Connect to server */ -ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, $ldap_protocol); $connection= ldap_connect($ldap_host,$ldap_port) - or die ('Could not connect to server '.$ldap_host.'!'); + or die ('Could not connect to server '.$ldap_host."\n!"); +ldap_set_option($connection, LDAP_OPT_PROTOCOL_VERSION, $ldap_protocol); ldap_bind($connection,$ldap_admin,$ldap_password) - or die ('Could not bind to server '.$ldap_host.'!'); + or die ('Could not bind to server '.$ldap_host."!\n"); $results= ldap_get_entries($connection, ldap_search($connection, $ldap_base, $filter, $attributes)); @@ -83,11 +83,11 @@ for($i=0; $i<$count; $i++) { $mungedDial = new sambaMungedDial(); $mungedDial->load($entry['sambamungeddial'][0]); $modify['sambaMungedDial'][0]= $mungedDial->getMunged(); - if(ldap_modify($connection,$entry['dn'],$modify)) { - print("done.\n"); - } else { - print("failed.\n"); - } + #if(ldap_modify($connection,$entry['dn'],$modify)) { + # print("done.\n"); + #} else { + # print("failed.\n"); + #} } ldap_close($connection); -- 2.30.2