diff options
| author | Rob Crittenden <rcritten@redhat.com> | 2014-02-20 16:47:38 -0500 |
|---|---|---|
| committer | Rob Crittenden <rcritten@redhat.com> | 2014-02-21 14:20:19 -0500 |
| commit | 04a38bc1491e7396d220efbbcbf7a9a1b67c45aa (patch) | |
| tree | bd0850cbb968425f25afbadce7d3b016fcb59b6e | |
| parent | 6ea9bd897f3cfc1526067b52868d31ee3da19cc1 (diff) | |
| download | mod_nss-04a38bc1491e7396d220efbbcbf7a9a1b67c45aa.tar.gz mod_nss-04a38bc1491e7396d220efbbcbf7a9a1b67c45aa.tar.xz mod_nss-04a38bc1491e7396d220efbbcbf7a9a1b67c45aa.zip | |
Move nss_pcache to /usr/libexec
| -rwxr-xr-x | migrate.pl | 3 | ||||
| -rw-r--r-- | nss.conf.in | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -115,7 +115,8 @@ while (<SSL>) { } if ($passphrase == 0) { - print NSS "NSSPassPhraseHelper /usr/sbin/nss_pcache\n"; + # NOTE: Located at '/usr/sbin/nss_pcache' prior to 'mod_nss-1.0.9'. + print NSS "NSSPassPhraseHelper /usr/libexec/nss_pcache\n"; } close(NSS); diff --git a/nss.conf.in b/nss.conf.in index 050ce8a..c941ecf 100644 --- a/nss.conf.in +++ b/nss.conf.in @@ -40,7 +40,7 @@ NSSPassPhraseDialog builtin # Pass Phrase Helper: # This helper program stores the token password pins between # restarts of Apache. -NSSPassPhraseHelper @apache_bin@/nss_pcache +NSSPassPhraseHelper /usr/libexec/nss_pcache # Configure the SSL Session Cache. # NSSSessionCacheSize is the number of entries in the cache. |
