X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=bin%2Fpasswd.import;h=aa4f90f98d95be2598893fd1f0692579f056d527;hp=8b5826bfe50ad93e918c501116f0b91c2a534dce;hb=7f1985f56afc81912dbc86a1a3178cd128af76fe;hpb=45cf3a8cff466b4731a95e11ff7f4f76aee25d7c diff --git a/bin/passwd.import b/bin/passwd.import index 8b5826bfe..aa4f90f98 100755 --- a/bin/passwd.import +++ b/bin/passwd.import @@ -1,5 +1,5 @@ #!/usr/bin/perl -Tw -# $Id: passwd.import,v 1.1 2002-04-20 11:57:35 ivan Exp $ +# $Id: passwd.import,v 1.2 2002-06-21 09:11:09 ivan Exp $ use strict; use vars qw(%part_svc); @@ -81,10 +81,15 @@ while () { while () { chop; - my($username,$x,$uid,$gid,$finger,$dir,$shell)=split(/:/); - my($password)=$upassword{$username} || $password{$username}; + my($username,$x,$uid,$gid,$finger,$dir,$shell) = split(/:/); + my $password = $password{$username}; - $svcpart = $shell_svcpart; + my $svcpart = $shell_svcpart; + + if ( qsearchs('svc_acct', { 'username' => $username } ) ) { + warn "warning: $username already exists; skipping\n"; + next; + } my($svc_acct) = new FS::svc_acct ({ 'svcpart' => $svcpart, @@ -95,13 +100,12 @@ while () { 'finger' => $finger, 'dir' => $dir, 'shell' => $shell, - %{$allparam{$username}}, + #%{$allparam{$username}}, }); my($error); $error=$svc_acct->insert; die $error if $error; - delete $upassword{$username}; } sub usage {