We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
(Follow-up to #70)
In /etc/init.d/logstash, need to fix:
/etc/init.d/logstash
LS_LOG_DIR=/var/log/logstash LS_LOG_FILE="${LS_LOG_DIR}/$name.log" ... args="-f ${LS_CONF_DIR} -l ${LS_LOG_FILE} ${LS_OPTS}"
as the -l flag requires a path argument (https://www.elastic.co/guide/en/logstash/current/command-line-flags.html) as from version 5 (used to be a file argument: https://www.elastic.co/guide/en/logstash/2.4/command-line-flags.html).
-l
The text was updated successfully, but these errors were encountered:
3b894eb
No branches or pull requests
(Follow-up to #70)
In
/etc/init.d/logstash
, need to fix:as the
-l
flag requires a path argument (https://www.elastic.co/guide/en/logstash/current/command-line-flags.html) as from version 5 (used to be a file argument: https://www.elastic.co/guide/en/logstash/2.4/command-line-flags.html).The text was updated successfully, but these errors were encountered: