mirror of
https://github.com/roles-ansible/ansible_collection_git.git
synced 2024-09-14 20:12:03 +02:00
Merge pull request #19 from roles-ansible/r
Improve docs of requirement installation
This commit is contained in:
commit
f9f568e4cd
3 changed files with 6 additions and 6 deletions
|
@ -14,7 +14,7 @@ Here are all our ansible roles for installing git server.
|
||||||
## Using this Collection
|
## Using this Collection
|
||||||
You can install the collection using ansible-galaxy by running:
|
You can install the collection using ansible-galaxy by running:
|
||||||
```bash
|
```bash
|
||||||
ansible-galaxy collection install l3d.git:1.0.12
|
ansible-galaxy collection install l3d.git:1.0.13
|
||||||
```
|
```
|
||||||
|
|
||||||
Remember you can to Upgrade to the latest version of the l3d.git collection using the ``--upgrade`` parameter:
|
Remember you can to Upgrade to the latest version of the l3d.git collection using the ``--upgrade`` parameter:
|
||||||
|
@ -35,7 +35,7 @@ cd collections/ansible_collections/l3d/git/
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
|
|
||||||
# optionally install all requirements
|
# optionally install all requirements
|
||||||
ansible-galaxy install -r requirements.yml
|
ansible-galaxy collection install -r requirements.yml --upgrade
|
||||||
```
|
```
|
||||||
|
|
||||||
You can also list a collection in ``requirements.yml``:
|
You can also list a collection in ``requirements.yml``:
|
||||||
|
@ -43,7 +43,7 @@ You can also list a collection in ``requirements.yml``:
|
||||||
---
|
---
|
||||||
collections:
|
collections:
|
||||||
- name: l3d.git
|
- name: l3d.git
|
||||||
version: ">=1.0.12"
|
version: ">=1.0.13"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Include roles in your playbook
|
## Include roles in your playbook
|
||||||
|
@ -71,7 +71,7 @@ The roles in this collection using the ``ansible.builtin`` and ``community.gener
|
||||||
### Example Requirements Installation:
|
### Example Requirements Installation:
|
||||||
```bash
|
```bash
|
||||||
# galaxy requirements
|
# galaxy requirements
|
||||||
ansible-galaxy install -r requirements.yml --upgrade
|
ansible-galaxy collection install -r requirements.yml --upgrade
|
||||||
|
|
||||||
# pip requirements
|
# pip requirements
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
|
|
@ -9,7 +9,7 @@ namespace: l3d
|
||||||
name: git
|
name: git
|
||||||
|
|
||||||
# The version of the collection. Must be compatible with semantic versioning
|
# The version of the collection. Must be compatible with semantic versioning
|
||||||
version: 1.0.12
|
version: 1.0.13
|
||||||
|
|
||||||
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
||||||
readme: README.md
|
readme: README.md
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
---
|
---
|
||||||
collections:
|
collections:
|
||||||
- name: community.general
|
- name: community.general
|
||||||
version: ">=7.5.0"
|
version: ">=8.0.2"
|
||||||
|
|
Loading…
Reference in a new issue