update
This commit is contained in:
parent
1110cf573c
commit
0e46b7c6be
32 changed files with 799 additions and 0 deletions
32
ansible/roles/packages/tasks/defaults.yml
Normal file
32
ansible/roles/packages/tasks/defaults.yml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
- name: install apt
|
||||
include_tasks: "./scripts/install_apt.yml"
|
||||
|
||||
- name: install brew
|
||||
include_tasks: "./scripts/install_brew.yml"
|
||||
|
||||
- name: install pacman
|
||||
include_tasks: "./scripts/install_pacman.yml"
|
||||
|
||||
#- name: install go
|
||||
# include_tasks: "./scripts/install_go.yml"
|
||||
|
||||
- name: install go apps
|
||||
include_tasks: "./scripts/install_goapps.yml"
|
||||
|
||||
- name: install flatpak
|
||||
include_tasks: "./scripts/install_flatpak.yml"
|
||||
|
||||
- name: configure systemd
|
||||
include_tasks: "./scripts/configure_systemd.yml"
|
||||
|
||||
- name: configure groups
|
||||
include_tasks: "./scripts/configure_groups.yml"
|
||||
|
||||
- name: configure qemu
|
||||
include_tasks: "./scripts/configure_qemu.yml"
|
||||
|
||||
- name: configure bat
|
||||
include_tasks: "./scripts/configure_bat.yml"
|
||||
|
||||
- name: trust internal certs
|
||||
include_tasks: "./scripts/install_local_ca.yml"
|
||||
11
ansible/roles/packages/tasks/main.yml
Normal file
11
ansible/roles/packages/tasks/main.yml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
- name: Load a variable file
|
||||
include_vars: "{{ item }}"
|
||||
with_first_found:
|
||||
- "vars/{{ ansible_distribution }}-{{ ansible_distribution_version }}.yml"
|
||||
- "vars/{{ ansible_distribution }}.yml"
|
||||
- "vars/{{ ansible_os_family }}.yml"
|
||||
- "vars/defaults.yml"
|
||||
|
||||
- name:
|
||||
include_tasks: "defaults.yml"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue