From: Dimitri Savineau Date: Mon, 18 Feb 2019 16:38:35 +0000 (-0500) Subject: ansible.cfg: Add library path to configuration X-Git-Tag: v4.0.0rc1~101 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a1a871cadee5e86d181e1306c985e620b81fccac;p=ceph-ansible.git ansible.cfg: Add library path to configuration Ceph module path needs to be configured if we want to avoid issues like: no action detected in task. This often indicates a misspelled module name, or incorrect module path Currently the ansible-lint command in Travis CI complains about that. Signed-off-by: Dimitri Savineau --- diff --git a/ansible.cfg b/ansible.cfg index 3833b9e92..82678520c 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -3,6 +3,7 @@ [defaults] ansible_managed = Please do not change this file directly since it is managed by Ansible and will be overwritten +library = ./library action_plugins = plugins/actions callback_plugins = plugins/callback roles_path = ./roles