Skip to content

Commit

Permalink
Merge pull request #271 from guidograzioli/amw_203_loggging
Browse files Browse the repository at this point in the history
fix typo in variable name
  • Loading branch information
guidograzioli authored Mar 12, 2024
2 parents c6d8293 + 36b07ca commit c550749
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion roles/jws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Role Defaults
| `jws_catalina_base` | Tomcat catalina base env variable | `{{ lookup('env','CATALINA_BASE') }}` |
| `jws_conf_properties` | Path for tomcat configuration | `./conf/catalina.properties` |
| `jws_conf_policy` | Path for tomcat policy configuration | `./conf/catalina.policy` |
| `jws_conf_loggging` | Path for logging configuration | `./conf/logging.properties` |
| `jws_conf_logging` | Path for logging configuration | `./conf/logging.properties` |
| `jws_conf_context` | Relative path to context.xml | `./conf/context.xml` |
| `jws_conf_server` | Relative path to server.xml | `./conf/server.xml` |
| `jws_conf_web` | Relative path to web.xml | `./conf/web.xml` |
Expand Down
2 changes: 1 addition & 1 deletion roles/jws/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jws_setup: True
jws_catalina_base: "{{ lookup('env', 'CATALINA_BASE') }}"
jws_conf_properties: './conf/catalina.properties'
jws_conf_policy: './conf/catalina.policy'
jws_conf_loggging: './conf/logging.properties'
jws_conf_logging: './conf/logging.properties'
jws_conf_context: './conf/context.xml'
jws_conf_server: './conf/server.xml'
jws_conf_web: './conf/web.xml'
Expand Down
2 changes: 1 addition & 1 deletion roles/jws/meta/argument_specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ argument_specs:
default: "./conf/catalina.policy"
description: "Path for tomcat policy configuration"
type: "str"
jws_conf_loggging:
jws_conf_logging:
# line 13 of jws/defaults/main.yml
default: "./conf/logging.properties"
description: "Path for logging configuration"
Expand Down
2 changes: 1 addition & 1 deletion roles/jws/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jws:
conf:
properties: "{{ jws_conf_properties }}"
policy: "{{ jws_conf_policy }}"
logging: "{{ jws_conf_loggging }}"
logging: "{{ jws_conf_logging }}"
context: "{{ jws_conf_context }}"
server: "{{ jws_conf_server }}"
web: "{{ jws_conf_web }}"
Expand Down

0 comments on commit c550749

Please sign in to comment.