mirror of
https://github.com/mother-of-all-self-hosting/mash-playbook
synced 2024-11-10 14:24:25 +00:00
Add AUX role
This commit is contained in:
parent
556a231842
commit
2f7207bc68
5 changed files with 34 additions and 0 deletions
7
docs/services/aux.md
Normal file
7
docs/services/aux.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
# AUX
|
||||
|
||||
The [AUX](https://github.com/mother-of-all-self-hosting/ansible-role-aux) Ansible role can help you manage auxiliary files and directoris on your server.
|
||||
|
||||
It's useful for when you'd like to use Ansible to drop additional files on the server.
|
||||
|
||||
Consult the role's documentation for learning more.
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
| Name | Description | Documentation |
|
||||
| ------------------------------ | ------------------------------------- | ------------- |
|
||||
| [AUX](https://github.com/mother-of-all-self-hosting/ansible-role-aux) | Auxiliary file/directory management on your server via Ansible | [Link](services/aux.md) |
|
||||
| [Collabora Online](https://www.collaboraoffice.com/) | Your Private Office Suite In The Cloud | [Link](services/collabora-online.md) |
|
||||
| [Docker](https://www.docker.com/) | Open-source software for deploying containerized applications | [Link](services/docker.md) |
|
||||
| [Docker Registry](https://docs.docker.com/registry/) | A container image distribution registry | [Link](services/docker-registry.md) |
|
||||
|
|
|
@ -1,5 +1,25 @@
|
|||
---
|
||||
|
||||
########################################################################
|
||||
# #
|
||||
# aux #
|
||||
# #
|
||||
########################################################################
|
||||
|
||||
aux_directory_default_owner: "{{ mash_playbook_user_username }}"
|
||||
aux_directory_default_group: "{{ mash_playbook_user_groupname }}"
|
||||
|
||||
aux_file_default_owner: "{{ mash_playbook_user_username }}"
|
||||
aux_file_default_group: "{{ mash_playbook_user_groupname }}"
|
||||
|
||||
########################################################################
|
||||
# #
|
||||
# /aux #
|
||||
# #
|
||||
########################################################################
|
||||
|
||||
|
||||
|
||||
########################################################################
|
||||
# #
|
||||
# system/security #
|
||||
|
|
|
@ -72,6 +72,10 @@
|
|||
- src: git+https://gitlab.com/etke.cc/roles/redmine.git
|
||||
version: v5.0.5-1
|
||||
|
||||
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-aux.git
|
||||
name: aux
|
||||
version: v1.0.0-0
|
||||
|
||||
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-collabora-online.git
|
||||
name: collabora_online
|
||||
version: v22.05.12.1.1-0
|
||||
|
|
|
@ -85,6 +85,8 @@
|
|||
- role: galaxy/com.devture.ansible.role.woodpecker_ci_server
|
||||
- role: galaxy/com.devture.ansible.role.woodpecker_ci_agent
|
||||
|
||||
- role: galaxy/aux
|
||||
|
||||
- when: devture_systemd_service_manager_enabled | bool
|
||||
role: galaxy/com.devture.ansible.role.systemd_service_manager
|
||||
|
||||
|
|
Loading…
Reference in a new issue