diff options
author | Timo Aaltonen <tjaalton@ubuntu.com> | 2016-02-23 12:10:34 +0100 |
---|---|---|
committer | Jan Cholasta <jcholast@redhat.com> | 2016-02-26 08:29:44 +0100 |
commit | 872d5903d0d278914d740575b4ef92fa75c44a45 (patch) | |
tree | 07a8eab09e906d340cfbc73f6406f4368d60d949 /ipaplatform | |
parent | 4337c4f9c40b2587280eeff5f99ee8dd03092e17 (diff) | |
download | freeipa-872d5903d0d278914d740575b4ef92fa75c44a45.tar.gz freeipa-872d5903d0d278914d740575b4ef92fa75c44a45.tar.xz freeipa-872d5903d0d278914d740575b4ef92fa75c44a45.zip |
Move freeipa certmonger helpers to libexecdir.
The scripts in this directory are simple python scripts, nothing arch-specific
in them. Having them under libexec would simplify the code a bit too, since
there would be no need to worry about lib vs lib64 (which also cause trouble
on Debian).
https://fedorahosted.org/freeipa/ticket/5586
Reviewed-By: David Kupka <dkupka@redhat.com>
Diffstat (limited to 'ipaplatform')
-rw-r--r-- | ipaplatform/base/paths.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaplatform/base/paths.py b/ipaplatform/base/paths.py index ee383711a..bdff4f393 100644 --- a/ipaplatform/base/paths.py +++ b/ipaplatform/base/paths.py @@ -149,7 +149,7 @@ class BasePathNamespace(object): TMP_CA_P12 = "/tmp/ca.p12" TMP_KRB5CC = "/tmp/krb5cc_%d" USR_DIR = "/usr" - CERTMONGER_COMMAND_TEMPLATE = "/usr/%s/ipa/certmonger/%s" + CERTMONGER_COMMAND_TEMPLATE = "/usr/libexec/ipa/certmonger/%s" PKCS12EXPORT = "/usr/bin/PKCS12Export" CERTUTIL = "/usr/bin/certutil" CHROMIUM_BROWSER = "/usr/bin/chromium-browser" |