diff options
author | 2021-07-01 12:32:07 +0000 | |
---|---|---|
committer | 2021-07-01 12:32:07 +0000 | |
commit | e1ad0ddfc79066fb3699b887b6c131157a478d78 (patch) | |
tree | e4409b20485d64084a2e9979ea9a37b39836635c /docker/ansible/roles/run_collectd | |
parent | 6fb18ec472a19a7916eb4b37d6908f518861a1b0 (diff) | |
parent | f47bd2019a95c665ace84a879b024a6c93aff031 (diff) |
Merge "[ansible] Use collectd_config in config_files role"
Diffstat (limited to 'docker/ansible/roles/run_collectd')
-rw-r--r-- | docker/ansible/roles/run_collectd/tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docker/ansible/roles/run_collectd/tasks/main.yml b/docker/ansible/roles/run_collectd/tasks/main.yml index 8fc27342..2c5d0e67 100644 --- a/docker/ansible/roles/run_collectd/tasks/main.yml +++ b/docker/ansible/roles/run_collectd/tasks/main.yml @@ -1,4 +1,4 @@ -#Copyright 2018-2019 OPNFV and Intel Corporation +# Copyright 2018-21 Anuket, Intel Corporation and others # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -40,7 +40,7 @@ set_fact: volumes_list: - - /opt/collectd/etc/collectd.conf.d/:/opt/collectd/etc/collectd.conf.d + - /opt/collectd/etc/:/opt/collectd/etc/ - /var/run:/var/run - /tmp:/tmp - /var/lib/collectd:/var/lib/collectd @@ -55,7 +55,7 @@ name: bar-collectd image: "{{ collectd_image_name }}" volumes: "{{ volumes_list }}" - command: "/run_collectd.sh" + entrypoint: "/run_collectd.sh" detach: yes state: started restart: yes |