From 7422a0941b8aa29eebe45c192844a27c25c216ef Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Tue, 23 Nov 2021 20:37:39 +0200 Subject: [PATCH] Move config_template to plugins/action Unlike to the modules, ansible-galaxy tool does not respect symlinks, which results in collection brokeness after it installation as plugin itself is just missing there. In the meanwhile, symlinks are respected by regular git clone which is used for regular module retrievment. Change-Id: I747b217e6b0706c05e5fae98bc5b89be3cbb5930 --- action | 1 + action_plugins | 2 +- galaxy.yml | 2 +- plugins/action | 1 - {action => plugins/action}/config_template.py | 0 5 files changed, 3 insertions(+), 3 deletions(-) create mode 120000 action delete mode 120000 plugins/action rename {action => plugins/action}/config_template.py (100%) diff --git a/action b/action new file mode 120000 index 0000000..5af4c0f --- /dev/null +++ b/action @@ -0,0 +1 @@ +plugins/action/ \ No newline at end of file diff --git a/action_plugins b/action_plugins index aef476d..5af4c0f 120000 --- a/action_plugins +++ b/action_plugins @@ -1 +1 @@ -action \ No newline at end of file +plugins/action/ \ No newline at end of file diff --git a/galaxy.yml b/galaxy.yml index 0ad5bbd..b73afdd 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -4,7 +4,7 @@ description: |- Template includes config_template module, that leverages template module and adds override functionality to different types of config files. name: "config_template" -version: "1.2.0" +version: "1.2.1" readme: "README.rst" authors: - Kevin Carter diff --git a/plugins/action b/plugins/action deleted file mode 120000 index c770481..0000000 --- a/plugins/action +++ /dev/null @@ -1 +0,0 @@ -../action \ No newline at end of file diff --git a/action/config_template.py b/plugins/action/config_template.py similarity index 100% rename from action/config_template.py rename to plugins/action/config_template.py