summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2001-05-05 08:51:16 +0000
committerivan <ivan>2001-05-05 08:51:16 +0000
commitfafbffd5057b45c84afd30fbf664f37661ef1533 (patch)
treee381efd99e77b3311c27f52be4dd8725ae3d7031
parentb0a9702eab4338ff12507ba0ca07f121256f3c13 (diff)
http://www.sisd.com/freeside/list-archive/msg01915.html
-rwxr-xr-xbin/svc_acct.import8
1 files changed, 6 insertions, 2 deletions
diff --git a/bin/svc_acct.import b/bin/svc_acct.import
index 0acd731c5..0f459483f 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.12 2001-04-22 01:56:15 ivan Exp $
+# $Id: svc_acct.import,v 1.13 2001-05-05 08:51:16 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.12 2001-04-22 01:56:15 ivan
+# 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
# get rid of FS::SSH.pm (became Net::SSH and Net::SCP on CPAN)
#
# Revision 1.11 2000/06/29 12:27:01 ivan
@@ -200,6 +203,7 @@ my(%password);
while (<SHADOW>) {
chop;
my($username,$password)=split(/:/);
+ $password =~ s/\!+/\*SUSPENDED\* /;
$password{$username}=$password;
}