diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 21:25:59 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 21:25:59 +0000 |
commit | 8003ba152f15aa82aaadd76fcd6b669cc0cc9981 (patch) | |
tree | 7842527232644d8f0fc76639a38e9596a910d381 /mail/majordomo/scripts/makeseed | |
parent | Convert to USES=libtool and add INSTALL_TARGET=install-strip (diff) |
Remove non staged ports without pending PR from ma*
Notes
Notes:
svn path=/head/; revision=366959
Diffstat (limited to 'mail/majordomo/scripts/makeseed')
-rw-r--r-- | mail/majordomo/scripts/makeseed | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/mail/majordomo/scripts/makeseed b/mail/majordomo/scripts/makeseed deleted file mode 100644 index ae11e9cf900e..000000000000 --- a/mail/majordomo/scripts/makeseed +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/perl -my $file = $ARGV[0]; -my $seed = ''; -my $i; -my $patt = "./0123456789abcdefghijklmnopqrstuvwxyzQWERTYUIOPASDFGHJKLZXCVBNM"; -die unless $file; -srand; -for( $i = 1; $i <= 40; $i++ ) { - $seed = $seed . substr( $patt, int( rand() * 64 ), 1 ); -} -open OUT, ">>$file" || die "Cannot open output file"; -print OUT "\n## Set cookie_seed to value generated during install\n"; -printf OUT '$cookie_seed="%s";'."\n", $seed; -close( OUT ); |