galaxyproject / ansible-galaxy

An Ansible role for managing a Galaxy server
https://galaxy.ansible.com/galaxyproject/galaxy
58 stars 75 forks source link

Support installing local tools into sections #206

Closed natefoo closed 8 months ago

natefoo commented 8 months ago

This alters the previous behavior slightly, tools that do not specify a section will be placed in a section named Local Tools whereas previously they would be outside of a section.

The old simple syntax is still supported:

galaxy_local_tools:
  - foo.xml
  - bar.xml

Is the same as:

galaxy_local_tools:
  - file: foo.xml
    section_name: Local Tools
  - file: bar.xml
    section_name: Local Tools
microfuge commented 8 months ago

This is super convenient! Thanks!