.. _generate_make_tasks_module: generate_make_tasks -- Generate per Makefile target a dedicated task file ========================================================================= .. contents:: :local: :depth: 1 Synopsis -------- Generate per Makefile target a dedicated task file Parameters ---------- install_yamls_path (True, str, None) Absolute path to install\_yamls repository. output_directory (True, str, None) Absolute path to the output directory. It must exists. Examples -------- .. code-block:: yaml+jinja - name: Create output directory ansible.builtin.file: path: "{{ ansible_user_dir }}/make_installyamls/tasks" state: directory mode: "0644" - name: Generate make tasks cifmw.general.generate_make_tasks: install_yamls_path: "{{ cifmw_installyamls_repos }}" output_directory: "{{ ansible_user_dir }}/make_installyamls/tasks" Return Values ------------- success (always, bool, True) Status of the module Status ------ Authors ~~~~~~~ - Chandan Kumar (@raukadah) - Cedric Jeanneret (@cjeanner)