================================================================================
              W I N D O W S   I N S T A L L A T I O N   N O T E S
================================================================================

NOTE: THESE ARE MANUAL INSTALLATION NOTES for installing rollouts outside of the
      Bamboo deployment process. With Bamboo deployments, all these steps are done
      automatically.
      The instructions below assume that a WMS  rollout was created with the
      Bamboo build task and now we want to manually install this.
      Manual installation is not recommended, only in exception cases.

    1.  Log in as the Windows administrator to the application server instance
        where you want to install the rollout.

    2.  Open Administrative Tools > Services program.

    3.  On the Services window, scroll down to the application service which
        you want to apply the rollout to, and then stop it.

        Example: The service name typically is displayed as
        MOCA Server (<Instance Name>)

    4.  Open Command Prompt program.

    5.  On the Command Prompt window, change to the %LESDIR%\data directory of
        your instance, and then set the environment variables.

        > cd <Drive>:\JDA\<Instance Name>\les\data
        > env.bat

    6.  Copy the rollout distribution directory into the environment's temporary
        directory and extract the rollout.

        > mkdir %LESDIR%\rollouts\${rolloutName}
        > cd %LESDIR%\rollouts\${rolloutName}
        > copy <SOURCE_DIR>\${rolloutName} .

    7.  Install the rollout.

        > perl rollout.pl ${rolloutName}

    8.  Switch back to the Services program and start the same application
        service, which was stopped in the step #3 above.

================================================================================
                 U N I X   I N S T A L L A T I O N   N O T E S
================================================================================

NOTE: THESE ARE MANUAL INSTALLATION NOTES for installing rollouts outside of the
      Bamboo deployment process. With Bamboo deployments, all these steps are done
      automatically.
      The instructions below assume that a WMS  rollout was created with the
      Bamboo build task and now we want to manually install this.
      Manual installation is not recommended, only in exception cases.

    1.  Log in as the UNIX user to the application server instance where you
        want to install the rollout.

    2.  Shutdown the environment.

        $ rp stop

    3.  Copy the rollout distribution file into the environment's temporary
        directory.

        $ mkdir $LESDIR/../rollouts/${rolloutName}
        $ cd $LESDIR/../rollouts/${rolloutName}
        $ cp <SOURCE_DIR>/${rolloutName} .

    4.  Install the rollout.

        $ perl rollout.pl ${rolloutName}

    5.  Start up the environment.

        $ rp start