Skip to content

Commit

Permalink
Change the appserver passwords to plaintext (#51)
Browse files Browse the repository at this point in the history
* Update galaxy.yml

* Update AppServer.properties

* Update main.yml

* Update AppServer.properties.j2

* Update AppServer.properties.j2
  • Loading branch information
romakarol authored Jul 21, 2023
1 parent 2bf555f commit c3f6b7b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
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

0 comments on commit c3f6b7b

Please sign in to comment.