mirror of
https://codeberg.org/ProgramSnail/config.git
synced 2026-03-12 04:57:08 +00:00
names fix, fish config copying, some fixes dn to tests
This commit is contained in:
parent
c2a86623a7
commit
9e97c4c76d
21 changed files with 92 additions and 108 deletions
|
|
@ -1,4 +1,5 @@
|
|||
- name: Install cli tools
|
||||
- name: Installing cli tools
|
||||
become: true
|
||||
ansible.builtin.dnf5:
|
||||
name:
|
||||
# shells & common utils
|
||||
|
|
@ -29,6 +30,7 @@
|
|||
# other
|
||||
- ansible
|
||||
- ansible-lint
|
||||
- cronie
|
||||
|
||||
state: latest
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
- name: Install gui tools
|
||||
- name: Installing gui tools
|
||||
become: true
|
||||
ansible.builtin.dnf5:
|
||||
name:
|
||||
- jetbrains-mono-fonts
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
- name: Install cli tools for bare metal host
|
||||
- name: Installing cli tools for bare metal host
|
||||
become: true
|
||||
ansible.builtin.dnf5:
|
||||
name:
|
||||
- distrobox
|
||||
|
|
|
|||
|
|
@ -1,15 +1,15 @@
|
|||
- name: Install common cli apps
|
||||
- name: Installing common cli apps
|
||||
ansible.builtin.import_tasks: cli.yml
|
||||
when: "'cli' in apps"
|
||||
|
||||
- name: Install common gui apps
|
||||
- name: Installing common gui apps
|
||||
ansible.builtin.import_tasks: gui.yml
|
||||
when: "'gui' in apps"
|
||||
|
||||
- name: Install pps for host
|
||||
- name: Installing pps for host
|
||||
ansible.builtin.import_tasks: host.yml
|
||||
when: "'host' in apps"
|
||||
|
||||
- name: Install proxies
|
||||
- name: Installing proxies
|
||||
ansible.builtin.import_tasks: proxy.yml
|
||||
when: "'proxy' in apps"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
action: latest_release
|
||||
register: hola_version
|
||||
|
||||
- name: "Installing hola-proxy {{ hola_version.tag }}"
|
||||
- name: Installing hola-proxy {{ hola_version.tag }}
|
||||
become: true
|
||||
ansible.builtin.get_url:
|
||||
# TODO: insert v before version ??
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
action: latest_release
|
||||
register: opera_version
|
||||
|
||||
- name: "Installing opera-proxy {{ opera_version.tag }}"
|
||||
- name: Installing opera-proxy {{ opera_version.tag }}
|
||||
become: true
|
||||
ansible.builtin.get_url:
|
||||
# TODO: insert v before version ??
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue