system/tasks/base_software.yml

64 lines
1.6 KiB
YAML
Raw Normal View History

2020-01-07 19:50:03 +00:00
- name: upgrade arch-keyring
pacman:
2022-02-13 08:40:15 +00:00
state: latest # noqa package-latest
name: archlinux-keyring
2022-02-13 08:40:15 +00:00
force: true
update_cache: false
2022-02-13 08:40:15 +00:00
become: true
2020-01-13 19:04:49 +00:00
when: system_upgrade and ansible_facts['os_family'] == "Archlinux"
2019-10-24 19:16:17 +00:00
- name: upgrade system
pacman:
2022-02-13 08:40:15 +00:00
state: latest # noqa package-latest
upgrade: true
force: true
update_cache: false
2022-02-13 08:40:15 +00:00
become: true
2020-01-13 19:04:49 +00:00
when: system_upgrade and ansible_facts['os_family'] == "Archlinux"
2019-10-24 19:16:17 +00:00
register: upgrade
- name: Reboot updates to apply
reboot:
reboot_timeout: 3600
2020-01-13 19:04:49 +00:00
when: upgrade.changed and "linux" in upgrade.packages and system_upgrade and ansible_facts['os_family'] == "Archlinux"
2022-02-13 08:40:15 +00:00
become: true
2020-01-07 19:44:20 +00:00
2020-01-07 19:50:03 +00:00
- name: launch arch base install software
2020-01-07 19:44:20 +00:00
pacman:
2022-02-13 08:40:15 +00:00
state: present
2022-05-29 16:39:41 +00:00
name: "{{ system_base_softwares }}"
2022-02-13 08:40:15 +00:00
become: true
2019-09-18 21:14:11 +00:00
when: ansible_facts['os_family'] == "Archlinux"
- name: install aur workstation soft
2021-04-20 18:22:49 +00:00
aur:
name: "{{ system_base_aur_soft }}"
state: present
2022-02-13 08:40:15 +00:00
become: true
2021-04-20 18:22:49 +00:00
become_user: aur_builder
2022-02-12 09:41:14 +00:00
when: ansible_facts['os_family'] == "Archlinux" and system_base_aur_soft
2019-09-18 21:14:11 +00:00
2020-01-07 19:50:03 +00:00
- name: launch debian base install software
2019-09-18 21:14:11 +00:00
apt:
2022-02-13 08:40:15 +00:00
state: present
2022-05-29 16:39:41 +00:00
name: "{{ system_base_softwares }}"
2022-02-13 08:40:15 +00:00
update_cache: true
become: true
2019-09-18 21:14:11 +00:00
when: ansible_facts['os_family'] == "Debian"
2020-01-07 19:44:20 +00:00
2022-05-29 16:39:41 +00:00
- name: launch redhat base install software
dnf:
state: present
name: "{{ system_base_softwares }}"
update_cache: true
become: true
when: ansible_facts['os_family'] == "RedHat"
2022-05-31 12:12:32 +00:00
#- name: pass user shell to zsh
# user:
# name: "{{ user.name }}"
# shell: /bin/zsh
# state: present
# when: ansible_facts['os_family'] != "RedHat"
# become: true