Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change the appserver passwords to plaintext #51

Merged
merged 5 commits into from
Jul 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name: spm_middleware

# The version of the collection. Must be compatible with semantic versioning
# Please note. version also exists in /github/workflows/release.yml and will need to be update also
version: 1.2.4
version: 1.2.5

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
3 changes: 1 addition & 2 deletions roles/liberty/files/AppServer.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ as.vendor=WLP
# The username and password for admin server.
security.username=websphere
# Encrypt the plain-text password using 'build encrypt -Dpassword=<password>'
# Below is the encryption for the default password ("websphere")
security.password=XOVRjjVTebM8gV953LGMLQ==
security.password=websphere

# The name of the WebSphere Node or WebLogic Domain Name.
node.name=liberty
Expand Down
2 changes: 1 addition & 1 deletion roles/weblogic/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ applications_home: '{{ weblogic_base }}/config/applications'
mw_installer_folder: '{{ weblogic_base }}/installer'
domain_username: 'weblogic'
domain_password: 'weblogic'
encrypted_password: 'dummypassword'
encrypted_password: 'weblogic1'
server_name: 'CuramServer'
server_port: 7001

Expand Down
3 changes: 1 addition & 2 deletions roles/websphere/templates/AppServer.properties.j2
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ as.vendor=IBM
# The username and password for admin server.
security.username=websphere
# Encrypt the plain-text password using 'build encrypt -Dpassword=<password>'
# Below is the encryption for the default password ("websphere").
# NOTE: This must be updated after your first login!
security.password=XOVRjjVTebM8gV953LGMLQ==
security.password=websphere

# The name of the WebSphere Node or WebLogic Domain Name.
node.name={{ansible_hostname}}
Expand Down
Loading