59 lines
2 KiB
YAML
59 lines
2 KiB
YAML
# Ansible Roles for managing Auengun.net Infrastructure & Testing/Learning.
|
|
# Source available at git.auengun.net/homelab/ansible-collection
|
|
# Copyright (C) 2023 GregoryDosh
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
# SPDX-FileCopyrightText: 2023 GregoryDosh
|
|
---
|
|
- name: Ensure groups exists
|
|
become: true
|
|
ansible.builtin.group:
|
|
name: "{{ item }}"
|
|
state: present
|
|
with_items:
|
|
- docker
|
|
- "{{ DCAASS_CONFIG_GROUP_NAME }}"
|
|
|
|
- name: Create service user
|
|
become: true
|
|
ansible.builtin.user:
|
|
name: "{{ DCAASS_CONFIG_USER_NAME }}"
|
|
groups: docker,{{ DCAASS_CONFIG_GROUP_NAME }}
|
|
|
|
- name: Ensure config paths exist
|
|
become: true
|
|
when: item is not mapping
|
|
ansible.builtin.file:
|
|
path: "{{ item }}"
|
|
owner: "{{ DCAASS_CONFIG_USER_NAME }}"
|
|
group: "{{ DCAASS_CONFIG_GROUP_NAME }}"
|
|
mode: "{{ DCAASS_CONFIG_DIR_MODE }}"
|
|
state: directory
|
|
with_items:
|
|
- "{{ DCAASS_CONFIG_PATH }}"
|
|
- "{{ DCAASS_EXTRA_CONFIG_DIRS }}"
|
|
|
|
- name: Ensure extra config paths exist
|
|
become: true
|
|
when: item is mapping
|
|
ansible.builtin.file:
|
|
path: "{{ item.path }}"
|
|
owner: "{{ item['owner'] if 'owner' in item.keys() else DCAASS_CONFIG_USER_NAME }}"
|
|
group: "{{ item['group'] if 'group' in item.keys() else DCAASS_CONFIG_GROUP_NAME }}"
|
|
mode: "{{ item['mode'] if 'mode' in item.keys() else DCAASS_CONFIG_DIR_MODE }}"
|
|
state: directory
|
|
with_items:
|
|
- "{{ DCAASS_EXTRA_CONFIG_DIRS }}"
|