summaryrefslogtreecommitdiffstats
path: root/source/script/updatesmbpasswd.sh
diff options
context:
space:
mode:
authorcvs2svn Import User <samba-bugs@samba.org>1997-10-10 14:46:44 +0000
committercvs2svn Import User <samba-bugs@samba.org>1997-10-10 14:46:44 +0000
commit4480ee713f3ebaaf6852c2e3a5967b30e587f7db (patch)
tree70a8a34fa622fd9adef3dd7f65da299bf6c3e48a /source/script/updatesmbpasswd.sh
parent3590a783338defa4ff1385b2d5bb095c5051ac82 (diff)
downloadsamba-misc-tags/samba.tar.gz
samba-misc-tags/samba.tar.xz
samba-misc-tags/samba.zip
This commit was manufactured by cvs2svn to create tag 'samba'.samba-misc-tags/samba
Diffstat (limited to 'source/script/updatesmbpasswd.sh')
-rwxr-xr-xsource/script/updatesmbpasswd.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/source/script/updatesmbpasswd.sh b/source/script/updatesmbpasswd.sh
deleted file mode 100755
index 1d7e0d7332f..00000000000
--- a/source/script/updatesmbpasswd.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-nawk 'BEGIN {FS=":"}
-{
- if( $0 ~ "^#" ) {
- print $0
- } else if( (length($4) == 32) && (($4 ~ "^[0-9A-F]*$") || ($4 ~ "^[X]*$") || ( $4 ~ "^[*]*$"))) {
- print $0
- } else {
- printf( "%s:%s:%s:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:", $1, $2, $3);
- for(i = 4; i <= NF; i++)
- printf("%s:", $i)
- printf("\n")
- }
-}'