From: ivan Date: Thu, 29 Jun 2000 12:00:49 +0000 (+0000) Subject: support for pre-encrypted md5 passwords. X-Git-Tag: freeside_1_3_0~106 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=e446c1f657b37034e1867e82857a1741572da07f support for pre-encrypted md5 passwords. --- diff --git a/bin/fs-setup b/bin/fs-setup index 3dde038b2..002a4ed4c 100755 --- a/bin/fs-setup +++ b/bin/fs-setup @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: fs-setup,v 1.24 2000-03-02 07:44:07 ivan Exp $ +# $Id: fs-setup,v 1.25 2000-06-29 12:00:49 ivan Exp $ # # ivan@sisd.com 97-nov-8,9 # @@ -32,7 +32,10 @@ # fix radius attributes ivan@sisd.com 98-sep-27 # # $Log: fs-setup,v $ -# Revision 1.24 2000-03-02 07:44:07 ivan +# Revision 1.25 2000-06-29 12:00:49 ivan +# support for pre-encrypted md5 passwords. +# +# Revision 1.24 2000/03/02 07:44:07 ivan # typo forgot closing ' # # Revision 1.23 2000/02/03 05:16:52 ivan @@ -612,7 +615,7 @@ sub tables_hash_hack { 'columns' => [ 'svcnum', 'int', '', '', 'username', 'varchar', '', $username_len, #unique (& remove dup code) - '_password', 'varchar', '', 25, #13 for encryped pw's plus ' *SUSPENDED* + '_password', 'varchar', '', 50, #13 for encryped pw's plus ' *SUSPENDED* (mp5 passwords can be 34) 'popnum', 'int', 'NULL', '', 'uid', 'int', 'NULL', '', 'gid', 'int', 'NULL', '', diff --git a/htdocs/docs/upgrade6.html b/htdocs/docs/upgrade6.html index 7615fa71a..c9cdf3314 100644 --- a/htdocs/docs/upgrade6.html +++ b/htdocs/docs/upgrade6.html @@ -31,6 +31,7 @@ ALTER TABLE part_svc ADD svc_www__recnum varchar(80) NULL; ALTER TABLE part_svc ADD svc_www__recnum_flag char(1) NULL; ALTER TABLE part_svc ADD svc_www__usersvc varchar(80) NULL; ALTER TABLE part_svc ADD svc_www__uesrsvc_flag char(1) NULL; +ALTER TABLE svc_acct CHANGE _password _password varchar(50) NULL;
  • Copy or symlink htdocs to the new copy.