Skip to content

Commit

Permalink
include->include_tasks (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
shellshock1953 authored Dec 18, 2023
1 parent c7a777c commit 6c93902
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions roles/components/tasks/component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@
vars:
installObj: '{{ componentObj.install | default({}) }}'
tags: install
- include: configs.yml
- include_tasks: configs.yml
vars:
configsObj: '{{ componentObj.configs | default({}) }}'
tags: configs
- include: run_configs.yml
- include_tasks: run_configs.yml
vars:
runConfigsObj: '{{ componentObj.run_configs | default({}) }}'
tags: run_configs
- include: run.yml
- include_tasks: run.yml
vars:
runObj: '{{ componentObj.run | default({}) }}'
tags: run
Expand Down
6 changes: 3 additions & 3 deletions roles/components/tasks/plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
vars:
installObj: '{{ pluginObj.install | default({}) }}'
- name: '{{ plugin_prefix }} configs'
include: configs.yml
include_tasks: configs.yml
vars:
configsObj: '{{ pluginObj.configs | default({}) }}'
- name: '{{ plugin_prefix }} RunConfigs'
include: run_configs.yml
include_tasks: run_configs.yml
vars:
runConfigsObj: '{{ pluginObj.run_configs | default({}) }}'
- name: '{{ plugin_prefix }} run'
include: run.yml
include_tasks: run.yml
vars:
runObj: '{{ pluginObj.run | default({}) }}'
tags: [plugins]

0 comments on commit 6c93902

Please sign in to comment.