Skip to content

Commit

Permalink
Updated default wildfly version
Browse files Browse the repository at this point in the history
  • Loading branch information
inkatze committed Feb 7, 2016
1 parent b1a3508 commit 0c83448
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 2 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
CHANGELOG
=========

v1.0.0:

Initial release.

v1.1.0

- Feature: Management user creation.

v2.0.0

- New task structure.
- Ability to change the daemon user and group.
- Clarification in log variable names to be console_log variables to avoid confusion with the server log.

v2.1.0

- Updated default version to 10.0.0.Final.
- Changed `sudo_user` to `become_user` in user creation task.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ Example Playbook
roles:
- { role: inkatze.wildfly }

Troubleshooting
---------------

- If you're getting a `Connection refused` error in your browser check that
you have the correct IP address in your `wildfly_bind_address` variable.

License
-------

Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
# defaults file for wildfly

wildfly_version: 9.0.1.Final
wildfly_version: 10.0.0.Final

wildfly_user: wildfly
wildfly_group: wildfly
Expand Down
2 changes: 1 addition & 1 deletion tasks/users.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
command: >
{{ wildfly_dir }}/bin/add-user.sh
{{ wildfly_management_user }} {{ wildfly_management_password }}
sudo_user: "{{ wildfly_user }}"
become_user: "{{ wildfly_user }}"
when: wildfly_management_user is defined and
wildfly_management_password is defined and
wildfly_management_user_overwrite

0 comments on commit 0c83448

Please sign in to comment.