2024-04-29 13:59:35 +03:00
|
|
|
---
|
|
|
|
- name: Configure host system
|
|
|
|
hosts: host.ublue.local
|
|
|
|
gather_facts: true
|
|
|
|
tasks:
|
|
|
|
- name: Add ublue.local entries to /etc/hosts
|
|
|
|
ansible.builtin.lineinfile:
|
|
|
|
path: /etc/hosts
|
|
|
|
search_string: 127.0.0.1 rvproxy.ublue.local registry.ublue.local forge.ublue.local
|
|
|
|
line: 127.0.0.1 rvproxy.ublue.local registry.ublue.local forge.ublue.local
|
|
|
|
state: present
|
|
|
|
become: true
|
|
|
|
|
|
|
|
- name: Add ublue.local TSL root certificate to trust anchors
|
|
|
|
ansible.builtin.copy:
|
|
|
|
src: /certs/tls/ublue-os_forge-root.pem
|
|
|
|
dest: /etc/pki/ca-trust/source/anchors/ublue-os_forge-root.pem
|
|
|
|
force: true
|
|
|
|
mode: "0644"
|
|
|
|
become: true
|
|
|
|
|
|
|
|
- name: Update ca-trust store
|
|
|
|
ansible.builtin.command:
|
|
|
|
cmd: update-ca-trust
|
|
|
|
changed_when: false
|
|
|
|
become: true
|
2024-05-03 17:21:06 +03:00
|
|
|
|
|
|
|
- name: Create default directory for forge content
|
|
|
|
ansible.builtin.file:
|
|
|
|
path: "{{ forge_data_path }}"
|
|
|
|
state: directory
|
|
|
|
mode: "0755"
|
|
|
|
|
|
|
|
- name: Create default configuration variable file
|
|
|
|
ansible.builtin.copy:
|
|
|
|
dest: "{{ forge_data_default_variables_file_path }}"
|
|
|
|
content: |
|
|
|
|
## ublue-os forge configuration variables defaults
|
|
|
|
## For more details got to https://github.com/ublue-os/forge/blob/main/docs/variables.md
|
|
|
|
|
|
|
|
{% for item in __vars_used %}
|
|
|
|
#{{ item | upper }}={{ lookup('ansible.builtin.vars', item) }}
|
|
|
|
{% endfor %}
|
|
|
|
backup: true
|
|
|
|
owner: "{{ ansible_facts.env.USER }}"
|
|
|
|
mode: "0644"
|
|
|
|
vars:
|
|
|
|
__vars_used: "{{ lookup('ansible.builtin.varnames', __regex_search, wantlist=true) }}"
|
|
|
|
__regex_search: ^forge_.+
|