Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ ansible-galaxy install datadog.datadog
| `datadog_agent_allow_downgrade` | Set to `yes` to allow Agent downgrades on apt-based platforms (use with caution, see `defaults/main.yml` for details). **On centos this will only work with ansible 2.4 and up**. |
| `use_apt_backup_keyserver` | Set `true` to use the backup keyserver instead of the default one. |
| `datadog_enabled` | Set to `false` to prevent `datadog-agent` service from starting. Defaults to `true` |
| `datadog_additional_groups` | Comma separated list of additional groups for the `datadog_user`. Linux only. |
| `datadog_additional_groups` | Either a list, or a string containing a comma-separated list of additional groups for the `datadog_user`. Linux only. |
| `datadog_windows_ddagentuser_name` | Name of windows user to create/use, in the format `<domain>\<user>`. Windows only. |
| `datadog_windows_ddagentuser_password` | Password to use to create the user, and/or register the service. Windows only. |

Expand Down
1 change: 0 additions & 1 deletion tasks/agent-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

- name: add "{{ datadog_user }}" user to additional groups
user: name="{{ datadog_user }}" groups="{{ datadog_additional_groups }}" append=yes
with_items: "{{ datadog_additional_groups }}"
when: datadog_additional_groups is defined and (datadog_additional_groups | length != 0)
notify: restart datadog-agent

Expand Down