diff options
author | Will Andrews <will@FreeBSD.org> | 2000-12-19 12:55:33 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2000-12-19 12:55:33 +0000 |
commit | 9d3118a2155178ae357571d5ba9b6845765a3781 (patch) | |
tree | cd32a7dd6cae3e27180f31668470c852b914f1de /security/cracklib/files | |
parent | d134e723440ecb6a8590418df256eb17f9e10f31 (diff) | |
download | ports-9d3118a2155178ae357571d5ba9b6845765a3781.tar.gz ports-9d3118a2155178ae357571d5ba9b6845765a3781.zip |
Add cracklib 2.7, a library containing a function that can be used in
one's own passwd(8) program to keep users from making guessable passwords
by filtering them out at the source.
PR: 23392
Submitted by: Andrew J. Korty <ajk@iu.edu>
Notes
Notes:
svn path=/head/; revision=36117
Diffstat (limited to 'security/cracklib/files')
-rw-r--r-- | security/cracklib/files/patch-Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/security/cracklib/files/patch-Makefile b/security/cracklib/files/patch-Makefile new file mode 100644 index 000000000000..927ed5c18fba --- /dev/null +++ b/security/cracklib/files/patch-Makefile @@ -0,0 +1,17 @@ +--- Makefile.orig Sat Apr 22 09:47:37 2000 ++++ Makefile Sat Apr 22 09:48:06 2000 +@@ -9,12 +9,12 @@ + ### + # set this to the absolute path (less extn) of compressed dict. + +-DICTPATH="/usr/local/lib/pw_dict" ++DICTPATH="/usr/local/libdata/cracklib/pw_dict" + + ### + # Set this to the path of one or more files continaing wordlists. + +-SRCDICTS=/usr/dict/words ++SRCDICTS=/usr/share/dict/words + + ### + # If you have installed the cracklib-dicts directory, use this |