X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=bin%2Fsvc_acct.import;h=2e51a8b2c8093dadbba486c4c2e272924245873f;hb=994ce98f176125b73d7119c51512f3574b90b29c;hp=0f459483fd6756110546a8a0074f80588a780521;hpb=fafbffd5057b45c84afd30fbf664f37661ef1533;p=freeside.git diff --git a/bin/svc_acct.import b/bin/svc_acct.import index 0f459483f..2e51a8b2c 100755 --- a/bin/svc_acct.import +++ b/bin/svc_acct.import @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: svc_acct.import,v 1.13 2001-05-05 08:51:16 ivan Exp $ +# $Id: svc_acct.import,v 1.14 2001-05-07 15:24:15 ivan Exp $ # # ivan@sisd.com 98-mar-9 # @@ -17,7 +17,10 @@ # don't import /var/spool/freeside/conf/shells! ivan@sisd.com 98-aug-13 # # $Log: svc_acct.import,v $ -# Revision 1.13 2001-05-05 08:51:16 ivan +# Revision 1.14 2001-05-07 15:24:15 ivan +# s/!/*/ +# +# Revision 1.13 2001/05/05 08:51:16 ivan # http://www.sisd.com/freeside/list-archive/msg01915.html # # Revision 1.12 2001/04/22 01:56:15 ivan @@ -203,6 +206,7 @@ my(%password); while () { chop; my($username,$password)=split(/:/); + $password =~ s/^\!$/\*/; $password =~ s/\!+/\*SUSPENDED\* /; $password{$username}=$password; }