mirror of
https://github.com/roles-ansible/ansible_collection_users.git
synced 2024-08-16 10:29:50 +02:00
Increase version 1.0.1
This commit is contained in:
parent
0b554d4ab6
commit
a8da61e895
2 changed files with 32 additions and 1 deletions
31
README.md
31
README.md
|
@ -16,6 +16,37 @@ And it is possible to delete users too.
|
||||||
+ ``l3d.users.admin``: [roles/admin](roles/admin) ![logo](https://ansible.l3d.space/svg/l3d.users.admin_ansible-role.svg)
|
+ ``l3d.users.admin``: [roles/admin](roles/admin) ![logo](https://ansible.l3d.space/svg/l3d.users.admin_ansible-role.svg)
|
||||||
+ ``l3d.users.sshd``: [roles/sshd](roles/admin) ![logo](https://ansible.l3d.space/svg/l3d.users.sshd_ansible-role.svg)
|
+ ``l3d.users.sshd``: [roles/sshd](roles/admin) ![logo](https://ansible.l3d.space/svg/l3d.users.sshd_ansible-role.svg)
|
||||||
|
|
||||||
|
## Using this Collection
|
||||||
|
You can install the collection using ansible-galaxy by running:
|
||||||
|
```bash
|
||||||
|
ansible-galaxy collection install l3d.users:1.0.1
|
||||||
|
```
|
||||||
|
|
||||||
|
Remember you can to Upgrade to the latest version of the l3d.git collection using the ``--upgrade`` parameter:
|
||||||
|
```bash
|
||||||
|
ansible-galaxy collection install l3d.users --upgrade
|
||||||
|
```
|
||||||
|
|
||||||
|
Or you could clone this collection in your local ansible project for example to ``collections/ansible_collections/l3d/users/``.
|
||||||
|
```
|
||||||
|
# Clone git Repo to specified path
|
||||||
|
git clone https://github.com/roles-ansible/ansible_collection_users.git collections/ansible_collections/l3d/users/
|
||||||
|
|
||||||
|
# change directory
|
||||||
|
cd collections/ansible_collections/l3d/users/
|
||||||
|
|
||||||
|
# optionally install all requirements
|
||||||
|
ansible-galaxy collection install -r requirements.yml --upgrade
|
||||||
|
```
|
||||||
|
|
||||||
|
You can also list a collection in ``requirements.yml``:
|
||||||
|
```yaml
|
||||||
|
---
|
||||||
|
collections:
|
||||||
|
- name: l3d.users
|
||||||
|
version: ">=1.0.1"
|
||||||
|
```
|
||||||
|
|
||||||
Global Variables:
|
Global Variables:
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ namespace: l3d
|
||||||
name: users
|
name: users
|
||||||
|
|
||||||
# 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.0
|
version: 1.0.1
|
||||||
|
|
||||||
# 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
|
||||||
|
|
Loading…
Reference in a new issue