diff options
Diffstat (limited to 'FS/bin')
-rwxr-xr-x | FS/bin/freeside-setup | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/FS/bin/freeside-setup b/FS/bin/freeside-setup index ddc210f50..bf093a050 100755 --- a/FS/bin/freeside-setup +++ b/FS/bin/freeside-setup @@ -28,9 +28,7 @@ my($dbdef_file) = "%%%FREESIDE_CONF%%%/dbdef.". datasrc; ### -#print "\nEnter the maximum username length: "; -#my($username_len)=&getvalue; -my $username_len = 32; #usernamemax config file +my $username_len = 32; #print "\n\n", <<END, ":"; #Freeside tracks the RADIUS User-Name, check attribute Password and @@ -77,7 +75,7 @@ my $username_len = 32; #usernamemax config file # create a dbdef object from the old data structure ### -my $dbdef = dbdef_dist; +my $dbdef = dbdef_dist(datasrc); #important $dbdef->save($dbdef_file); @@ -94,7 +92,6 @@ my $dbh = adminsuidsetup $opt_u; #$user; $|=1; foreach my $statement ( $dbdef->sql($dbh) ) { - warn $statement if $statement =~ /TABLE cdr/; $dbh->do( $statement ) or die "CREATE error: ". $dbh->errstr. "\ndoing statement: $statement"; } |