├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples └── install-installation-manager.yml └── library ├── ibmim.py ├── ibmim_installer.py ├── liberty_server.py ├── profile_dmgr.py ├── profile_liberty.py ├── profile_nodeagent.py ├── was_server.py └── wsadmin.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_store 2 | *.swp 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amimof/ansible-websphere/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amimof/ansible-websphere/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amimof/ansible-websphere/HEAD/README.md -------------------------------------------------------------------------------- /examples/install-installation-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amimof/ansible-websphere/HEAD/examples/install-installation-manager.yml -------------------------------------------------------------------------------- /library/ibmim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amimof/ansible-websphere/HEAD/library/ibmim.py -------------------------------------------------------------------------------- /library/ibmim_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amimof/ansible-websphere/HEAD/library/ibmim_installer.py -------------------------------------------------------------------------------- /library/liberty_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amimof/ansible-websphere/HEAD/library/liberty_server.py -------------------------------------------------------------------------------- /library/profile_dmgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amimof/ansible-websphere/HEAD/library/profile_dmgr.py -------------------------------------------------------------------------------- /library/profile_liberty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amimof/ansible-websphere/HEAD/library/profile_liberty.py -------------------------------------------------------------------------------- /library/profile_nodeagent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amimof/ansible-websphere/HEAD/library/profile_nodeagent.py -------------------------------------------------------------------------------- /library/was_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amimof/ansible-websphere/HEAD/library/was_server.py -------------------------------------------------------------------------------- /library/wsadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amimof/ansible-websphere/HEAD/library/wsadmin.py --------------------------------------------------------------------------------