summaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorJohn Terpstra <jht@samba.org>2001-04-16 18:03:57 +0000
committerJohn Terpstra <jht@samba.org>2001-04-16 18:03:57 +0000
commitab05e05469d4257cbd66ad5cc7ef333e0448e6f5 (patch)
tree390b5a4be29ed89bdeda23e57b7d7ef3978036bd /packaging
parentfe5947339d467d3dc866c0357a78c6f3a37d9609 (diff)
downloadsamba-ab05e05469d4257cbd66ad5cc7ef333e0448e6f5.tar.gz
samba-ab05e05469d4257cbd66ad5cc7ef333e0448e6f5.tar.xz
samba-ab05e05469d4257cbd66ad5cc7ef333e0448e6f5.zip
Ditto removal of deprecated commands.
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/Caldera/OpenLinux/make_smbpasswd.perl13
1 files changed, 0 insertions, 13 deletions
diff --git a/packaging/Caldera/OpenLinux/make_smbpasswd.perl b/packaging/Caldera/OpenLinux/make_smbpasswd.perl
deleted file mode 100755
index 2666c19666e..00000000000
--- a/packaging/Caldera/OpenLinux/make_smbpasswd.perl
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/perl
-$X= "X" x 32;
-$U="[U ]";
-$L="LCT-00000000";
-print("#\n# SMB password file.\n#\n");
-
-while ( <> ) {
- next unless (/^[A-Za-z0-9_]/);
- chop;
- @V = split(/:/);
- printf( "%s:%s:%s:%s:%s:%s:%s\n", $V[0], $V[2], $X, $X, $U, $L, $V[4]);
-}
-