-
Notifications
You must be signed in to change notification settings - Fork 10
feat: Add install script for Vector #95
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
Conversation
|
||
$sudo_cmd sh -c "DEBIAN_FRONTEND=noninteractive apt-get install -y apt-transport-https curl gnupg 2>$VEC_APT_INSTALL_ERROR_MSG || apt_exit_code=$?" | ||
|
||
if grep "Could not get lock" $VEC_APT_INSTALL_ERROR_MSG; then |
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 realize this is not at all related to your PR, but how does this check behaves with i18n?
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.
😓 probably poorly, but it doesn't appear to have come up for the "upstream" scripts yet? Might be worth opening an issue to track though.
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.
Oh yeah this is definitely a question for the upstream version, but I didn't thought of it at the time 😬
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.
https://datadoghq.atlassian.net/browse/APL-2224 created for that purpose
Opened as an alternative to vectordotdev/vector#18777
This struck me as a better location to maintain the script as AP is likely to be responsible for it as it is for the Agent and OPW scripts. Additionally since the scripts are so
copiedrelated co-locating them seems sensible.Original PR