From 6fdf747196271e2e80dca012b73928cd63ae68d6 Mon Sep 17 00:00:00 2001 From: Thomas Vitale Date: Thu, 17 Sep 2020 20:33:32 +0200 Subject: [PATCH] KEYCLOAK-15248 Remove duplicated steps in getting started guide --- .../proc-installing-client-adapter.adoc | 99 ------------------- 1 file changed, 99 deletions(-) diff --git a/getting_started/topics/sample-app/proc-installing-client-adapter.adoc b/getting_started/topics/sample-app/proc-installing-client-adapter.adoc index 9459676293..55711244c2 100644 --- a/getting_started/topics/sample-app/proc-installing-client-adapter.adoc +++ b/getting_started/topics/sample-app/proc-installing-client-adapter.adoc @@ -109,102 +109,3 @@ $ ./standalone.sh ---- > ...\standalone.bat ---- - -ifeval::[{project_community}==true] -. Download the *WildFly OpenID Connect Client Adapter* distribution from link:https://www.keycloak.org/downloads.html[keycloak.org]. -endif::[] - -ifeval::[{project_product}==true] -. Download the *Client Adapter for EAP 7* from the https://access.redhat.com/jbossnetwork/restricted/listSoftware.html?downloadType=distributions&product=core.service.rhsso[Red Hat customer portal]. -endif::[] - -. Change to the root directory of {appserver_name}. - -. Unzip the downloaded client adapter in this directory. -+ -[source,bash,subs=+attributes] ----- -$ unzip .zip ----- - -. Change to the bin directory. -+ -[source,bash,subs=+attributes] ----- -$ cd bin ----- - -. Run the appropriate script for your platform. -+ -[NOTE] -==== -If you receive a `file not found`, make sure you used `unzip` in the previous step. This method of extraction installs the files in the right place. -==== - -ifeval::[{project_product}==true] -+ -.EAP 7.3 on Linux/Unix -[source,bash,subs=+attributes] ----- -$ ./jboss-cli.sh --file=adapter-elytron-install-offline.cli ----- - -+ -.EAP 7.3 on Windows -[source,bash,subs=+attributes] ----- -> jboss-cli.bat --file=adapter-elytron-install-offline.cli ----- -endif::[] - -ifeval::[{project_community}==true] -+ -.WildFly 10 on Linux/Unix -[source,bash,subs=+attributes] ----- -$ ./jboss-cli.sh --file=adapter-install-offline.cli ----- - -+ -.WildFly 10 on Windows -[source,bash,subs=+attributes] ----- -> jboss-cli.bat --file=adapter-install-offline.cli ----- - -+ -.Wildfly 11 on Linux/Unix -[source,bash,subs=+attributes] ----- -$ ./jboss-cli.sh --file=adapter-elytron-install-offline.cli ----- - -+ -.Wildfly 11 on Windows -[source,bash,subs=+attributes] ----- -> jboss-cli.bat --file=adapter-elytron-install-offline.cli ----- -endif::[] - -+ -[NOTE] -==== -This script makes the necessary edits to the `.../standalone/configuration/standalone.xml` file. -==== - -. Start the application server. - -+ -.Linux/Unix -[source,bash,subs=+attributes] ----- -$ ./standalone.sh ----- - -+ -.Windows -[source,bash,subs=+attributes] ----- -> ...\standalone.bat -----