diff options
author | Ade Lee <alee@redhat.com> | 2014-05-08 23:45:39 -0400 |
---|---|---|
committer | Ade Lee <alee@redhat.com> | 2014-05-27 14:51:50 -0400 |
commit | fe6822c650daf2aa63fe0033474668772171a84e (patch) | |
tree | 8c1956641f51d32f4c01581c55b036ad80fb572c /install | |
parent | f7e2796362f12fa41aa65e585b1c45def17e2e19 (diff) | |
download | freeipa-fe6822c650daf2aa63fe0033474668772171a84e.tar.gz freeipa-fe6822c650daf2aa63fe0033474668772171a84e.tar.xz freeipa-fe6822c650daf2aa63fe0033474668772171a84e.zip |
set drm to not install by default with ipa-server-install
Diffstat (limited to 'install')
-rwxr-xr-x | install/tools/ipa-server-install | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/install/tools/ipa-server-install b/install/tools/ipa-server-install index 2ab4e68bc..14f11da05 100755 --- a/install/tools/ipa-server-install +++ b/install/tools/ipa-server-install @@ -766,7 +766,10 @@ def main(): setup_drm = False else: setup_ca = True - setup_drm = True + # setup_drm is set to False until Dogtag 10.2 is available for IPA to consume + # Until then users that want to install the DRM need to use ipa-install-drm + # TODO set setup_drm = True when Dogtag 10.2 is available + setup_drm = False # Figure out what external CA step we're in. See cainstance.py for more # info on the 3 states. |