-
Notifications
You must be signed in to change notification settings - Fork 52
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
Feature/logger jar #874
Feature/logger jar #874
Conversation
ansible/README.md
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this line in the README should change from a tomcat_deploy to an exec_jar
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good but should retain tomcat version in logger path default
@@ -6,7 +6,7 @@ | |||
<conversionRule conversionWord="wex" converterClass="org.springframework.boot.logging.logback.WhitespaceThrowableProxyConverter" /> | |||
|
|||
<variable name="appName" value="logger-service"/> | |||
<variable name="LOG_DIR" value="/var/log/{{ tomcat | default('tomcat9')}}" /> | |||
<variable name="LOG_DIR" value="{{ jar_log_path | default('/var/log/tomcat9')}}" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMHO this should retain the tomcat version in the log path for the default case.
ie {{ jar_log_path | default('/var/log/' + tomcat)}}
or however you'd express that in ansible
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
No description provided.