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
Prevent main & check configuration files to be read by everybody. The reason is they can contains some secrets.
Before this modification we had something like that:
$ ls -lah /etc/datadog-agent/conf.d/mysql.d/conf.yaml -rw-r--r-- 1 dd-agent dd-agent 657 Nov 30 15:15 /etc/datadog-agent/conf.d/mysql.d/conf.yaml $ ls -lah /etc/datadog-agent/datadog.yaml -rw-r--r-- 1 dd-agent dd-agent 215 Nov 30 15:09 /etc/datadog-agent/datadog.yaml
After it become:
$ ls -lah /etc/datadog-agent/datadog.yaml -rw-r----- 1 dd-agent dd-agent 215 Dec 1 12:26 /etc/datadog-agent/datadog.yaml $ ls -lah /etc/datadog-agent/conf.d/mysql.d/conf.yaml -rw-r----- 1 dd-agent dd-agent 657 Dec 1 12:26 /etc/datadog-agent/conf.d/mysql.d/conf.yaml
The text was updated successfully, but these errors were encountered:
Change configuration perms on Linux (#313)
808c84e
Prevent main & check configuration files to be read by everybody. The reason is they can contains some secrets. Fix #312
Successfully merging a pull request may close this issue.
Prevent main & check configuration files to be read by everybody.
The reason is they can contains some secrets.
Before this modification we had something like that:
After it become:
The text was updated successfully, but these errors were encountered: