pridkett/ansible-role-fish

How to Use

KaiDevrim opened this issue · 1 comments

Hello, how do I install this? Installing using ansible-galaxy does not seem to work?

This repository isn't part of ansible-galaxy, you can use requirements.yml to install it.

If you haven't already, create requirements.yml with the following content:

---
- name: pridkett.fish
  scm: git
  src: https://github.com/pridkett/ansible-role-fish.git
  version: master

Then you can still use ansible-galaxy to pull down the roles:

ansible-galaxy install -r requirements.yml -p roles

Or to update the roles:

ansible-galaxy install -f -r requirements.yml -p roles

That should take care of it for you.