Ansible automation for WebLogic - Part 2: Unarchive and Copy WebLogic installers
This post is continuous learning " Ansible automation for WebLogic " series. If you are not read the previous post please go through it which will be telling you that Java installation using Ansible . That same play book you can use it for CPU patches. The objective of this post is to use the ansible playbook for unzip the WebLogic installer and run the silent mode installer. As we have explored in the last post unarchive module used for the Java installer which had tar.gz extension. There are multiple modules in ansible which are very powerful. In this post I would like to share my experiments with the following: unarchive module copy module Unarchive module in Ansible We can use the unarchive module for Zip files and also for tar.gz files. When we use this module need to provide the src, dest values that is source and destination. This module automatically copies the zip file and unzip it in the remote The copy module in Ansible The copy module is works similar...