From ae199140eb3780b50f49c97f3e02319c91642ac8 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Thu, 26 Apr 2018 12:33:07 -0700 Subject: [PATCH] Fix ansible role name in cfg files Change-Id: I59d81aaffb6813a62c7ffe7df60867b9c71b6b46 --- ansible.cfg | 12 ++++++++++++ setup.cfg | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 ansible.cfg diff --git a/ansible.cfg b/ansible.cfg new file mode 100644 index 0000000..6d7d679 --- /dev/null +++ b/ansible.cfg @@ -0,0 +1,12 @@ +[defaults] +gathering = smart +command_warnings = False +retry_files_enabled = False +callback_whitelist = profile_tasks + +# Attempt to load custom modules whether it's installed system-wide or from a virtual environment +roles_path = roles:$VIRTUAL_ENV/usr/share/ansible/roles/container-registry:$VIRTUAL_ENV/usr/local/share/ + + +[ssh_connection] +control_path = %(directory)s/%C diff --git a/setup.cfg b/setup.cfg index cda5eea..4d2b216 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] -name = container-registry -summary = container-registry - Ansible role to deploy a container registry +name = ansible-role-container-registry +summary = ansible-container-registry - Ansible role to deploy a container registry description-file = README.md author = TripleO Team