├── .ansible-lint ├── .github ├── FUNDING.yml ├── stale.yml └── workflows │ ├── ci.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── .yamllint ├── LICENSE ├── README.md ├── defaults └── main.yml ├── meta └── main.yml ├── molecule └── default │ ├── converge.yml │ ├── molecule.yml │ └── requirements.yml ├── tasks ├── global-require.yml ├── main.yml └── project-bin.yml └── templates ├── auth.json.j2 ├── composer-project.sh.j2 └── composer.sh.j2 /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/.gitignore -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/.yamllint -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/meta/main.yml -------------------------------------------------------------------------------- /molecule/default/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/molecule/default/converge.yml -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /molecule/default/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/molecule/default/requirements.yml -------------------------------------------------------------------------------- /tasks/global-require.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/tasks/global-require.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/project-bin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/tasks/project-bin.yml -------------------------------------------------------------------------------- /templates/auth.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/templates/auth.json.j2 -------------------------------------------------------------------------------- /templates/composer-project.sh.j2: -------------------------------------------------------------------------------- 1 | export PATH={{ composer_project_path }}:$PATH 2 | -------------------------------------------------------------------------------- /templates/composer.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/ansible-role-composer/HEAD/templates/composer.sh.j2 --------------------------------------------------------------------------------