Small tasks refactoring
This commit is contained in:
parent
7de3f1032c
commit
f9757b897b
@ -18,6 +18,7 @@
|
|||||||
# - dev-flutter
|
# - dev-flutter
|
||||||
# - virtual
|
# - virtual
|
||||||
# - terraform
|
# - terraform
|
||||||
|
- postinstall
|
||||||
vars:
|
vars:
|
||||||
desktop_src_dir: "{{ ansible_user_dir }}/src/desktop"
|
desktop_src_dir: "{{ ansible_user_dir }}/src/desktop"
|
||||||
arch_src_dir: "{{ ansible_user_dir }}/src/arch"
|
arch_src_dir: "{{ ansible_user_dir }}/src/arch"
|
||||||
|
@ -10,17 +10,9 @@
|
|||||||
- grub
|
- grub
|
||||||
- xorg-xinit
|
- xorg-xinit
|
||||||
- polkit-gnome
|
- polkit-gnome
|
||||||
- lightdm
|
- xdg-desktop-portal-gtk
|
||||||
- lightdm-gtk-greeter
|
|
||||||
- helvum
|
- helvum
|
||||||
|
|
||||||
- name: "Enable service"
|
|
||||||
become: yes
|
|
||||||
ansible.builtin.systemd:
|
|
||||||
name: lightdm
|
|
||||||
state: started
|
|
||||||
enabled: yes
|
|
||||||
|
|
||||||
- name: "Enable cron service"
|
- name: "Enable cron service"
|
||||||
become: yes
|
become: yes
|
||||||
ansible.builtin.systemd:
|
ansible.builtin.systemd:
|
||||||
@ -49,7 +41,7 @@
|
|||||||
- traceroute
|
- traceroute
|
||||||
- vim
|
- vim
|
||||||
|
|
||||||
- name: install terminal packages [AUR]
|
- name: "[Arch] install terminal packages"
|
||||||
shell:
|
shell:
|
||||||
cmd:
|
cmd:
|
||||||
yay -S --needed --noconfirm epson-inkjet-printer-escpr pm-utils
|
yay -S --needed --noconfirm epson-inkjet-printer-escpr pm-utils
|
||||||
@ -103,16 +95,6 @@
|
|||||||
name:
|
name:
|
||||||
- flatpak
|
- flatpak
|
||||||
|
|
||||||
- name: install the smile emoji picker
|
|
||||||
community.general.flatpak:
|
|
||||||
state: present
|
|
||||||
name: it.mijorus.smile
|
|
||||||
|
|
||||||
- name: install bottles
|
|
||||||
community.general.flatpak:
|
|
||||||
state: present
|
|
||||||
name: com.usebottles.bottles
|
|
||||||
|
|
||||||
- name: copy scripts
|
- name: copy scripts
|
||||||
become: yes
|
become: yes
|
||||||
copy:
|
copy:
|
||||||
@ -121,6 +103,3 @@
|
|||||||
mode: '0755'
|
mode: '0755'
|
||||||
loop:
|
loop:
|
||||||
- update-grub
|
- update-grub
|
||||||
|
|
||||||
- import_tasks: audio.yml
|
|
||||||
- import_tasks: bluetooth.yml
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
- name: install audio [Arch]
|
- name: "[Arch] install audio"
|
||||||
|
when: ansible_distribution == "Archlinux"
|
||||||
become: yes
|
become: yes
|
||||||
community.general.pacman:
|
community.general.pacman:
|
||||||
name:
|
name:
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
- name: install bluetooth
|
- name: "[Arch] install bluetooth"
|
||||||
|
when: ansible_distribution == "Archlinux"
|
||||||
become: yes
|
become: yes
|
||||||
community.general.pacman:
|
community.general.pacman:
|
||||||
name:
|
name:
|
||||||
- blueman
|
- blueman
|
||||||
|
|
||||||
- name: "Enable service"
|
- name: "[All] Enable service"
|
||||||
become: yes
|
become: yes
|
||||||
ansible.builtin.systemd:
|
ansible.builtin.systemd:
|
||||||
name: bluetooth
|
name: bluetooth
|
||||||
|
14
roles/desktop/tasks/flatpaks.yml
Normal file
14
roles/desktop/tasks/flatpaks.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
- name: "[All] install the smile emoji picker"
|
||||||
|
community.general.flatpak:
|
||||||
|
state: present
|
||||||
|
name: it.mijorus.smile
|
||||||
|
|
||||||
|
- name: "[All] install bottles"
|
||||||
|
community.general.flatpak:
|
||||||
|
state: present
|
||||||
|
name: com.usebottles.bottles
|
||||||
|
|
||||||
|
- name: "[All] install Element"
|
||||||
|
community.general.flatpak:
|
||||||
|
state: present
|
||||||
|
name: im.riot.Riot
|
@ -5,7 +5,14 @@
|
|||||||
- import_tasks: arch.yml
|
- import_tasks: arch.yml
|
||||||
when: ansible_distribution == "Archlinux"
|
when: ansible_distribution == "Archlinux"
|
||||||
|
|
||||||
|
- import_tasks: flatpaks.yml
|
||||||
|
|
||||||
|
- import_tasks: audio.yml
|
||||||
|
|
||||||
|
- import_tasks: bluetooth.yml
|
||||||
|
|
||||||
- import_tasks: dotfiles.yml
|
- import_tasks: dotfiles.yml
|
||||||
|
|
||||||
- import_tasks: signal.yml
|
- import_tasks: signal.yml
|
||||||
|
|
||||||
- import_tasks: timekpr.yml
|
- import_tasks: timekpr.yml
|
||||||
|
@ -1,32 +1,33 @@
|
|||||||
- become: yes
|
- become: yes
|
||||||
|
when: ansible_distribution == "Ubuntu"
|
||||||
block:
|
block:
|
||||||
- name: add ppa [Ubuntu]
|
- name: "[Ubuntu] add ppa"
|
||||||
when: ansible_distribution == "Ubuntu"
|
|
||||||
apt_repository:
|
apt_repository:
|
||||||
repo: ppa:mjasnik/ppa
|
repo: ppa:mjasnik/ppa
|
||||||
|
|
||||||
- name: install timekpr [Ubuntu]
|
- name: "[Ubuntu] install timekpr"
|
||||||
when: ansible_distribution == "Ubuntu"
|
|
||||||
apt:
|
apt:
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
state: latest
|
state: latest
|
||||||
pkg:
|
pkg:
|
||||||
- timekpr-next
|
- timekpr-next
|
||||||
|
|
||||||
- name: install timekpr [Arch]
|
- name: "[Arch] install timekpr"
|
||||||
shell:
|
shell:
|
||||||
cmd:
|
cmd:
|
||||||
yay -S --needed --noconfirm timekpr-next
|
yay -S --needed --noconfirm timekpr-next
|
||||||
when: ansible_distribution == "Archlinux"
|
when: ansible_distribution == "Archlinux"
|
||||||
|
|
||||||
- name: configure
|
- become: yes
|
||||||
|
block:
|
||||||
|
- name: "[All] configure"
|
||||||
template:
|
template:
|
||||||
src: var/lib/timekpr/config/timekpr.USER.conf.j2
|
src: var/lib/timekpr/config/timekpr.USER.conf.j2
|
||||||
dest: /var/lib/timekpr/config/timekpr.{{ansible_user_id}}.conf
|
dest: /var/lib/timekpr/config/timekpr.{{ansible_user_id}}.conf
|
||||||
vars:
|
vars:
|
||||||
user: "{{ ansible_user_id }}"
|
user: "{{ ansible_user_id }}"
|
||||||
|
|
||||||
- name: "Enable service"
|
- name: "[All] Enable service"
|
||||||
become: yes
|
become: yes
|
||||||
ansible.builtin.systemd:
|
ansible.builtin.systemd:
|
||||||
name: timekpr
|
name: timekpr
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
---
|
- name: "[Ubuntu] install package managers"
|
||||||
- name: install package managers
|
|
||||||
become: yes
|
become: yes
|
||||||
apt:
|
apt:
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
@ -7,7 +6,7 @@
|
|||||||
- aptitude
|
- aptitude
|
||||||
- flatpak
|
- flatpak
|
||||||
|
|
||||||
- name: install terminal packages
|
- name: "[Ubuntu] install terminal packages"
|
||||||
become: yes
|
become: yes
|
||||||
apt:
|
apt:
|
||||||
pkg:
|
pkg:
|
||||||
@ -26,13 +25,13 @@
|
|||||||
- policykit-1-gnome
|
- policykit-1-gnome
|
||||||
- printer-driver-escpr
|
- printer-driver-escpr
|
||||||
|
|
||||||
- name: install libfuse2 for appimages
|
- name: "[Ubuntu] install libfuse2 for appimages"
|
||||||
become: yes
|
become: yes
|
||||||
apt:
|
apt:
|
||||||
pkg:
|
pkg:
|
||||||
- libfuse2
|
- libfuse2
|
||||||
|
|
||||||
- name: install gui packages from apt
|
- name: "[Ubuntu] install gui packages from apt"
|
||||||
become: yes
|
become: yes
|
||||||
apt:
|
apt:
|
||||||
pkg:
|
pkg:
|
||||||
@ -44,11 +43,6 @@
|
|||||||
- flameshot
|
- flameshot
|
||||||
- gsimplecal
|
- gsimplecal
|
||||||
|
|
||||||
- name: install the smile emoji picker
|
|
||||||
community.general.flatpak:
|
|
||||||
state: present
|
|
||||||
name: it.mijorus.smile
|
|
||||||
|
|
||||||
- name: install gui apps
|
- name: install gui apps
|
||||||
become: yes
|
become: yes
|
||||||
apt:
|
apt:
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
- name: install java
|
- name: "[Arch] install java"
|
||||||
become: yes
|
become: yes
|
||||||
community.general.pacman:
|
community.general.pacman:
|
||||||
name:
|
name:
|
||||||
- jdk17-openjdk
|
- jdk17-openjdk
|
||||||
|
|
||||||
- name: install IntelliJ [AUR]
|
- name: "[Arch] install IntelliJ"
|
||||||
shell:
|
shell:
|
||||||
cmd:
|
cmd:
|
||||||
yay -S --needed --noconfirm intellij-idea-ultimate-edition
|
yay -S --needed --noconfirm intellij-idea-ultimate-edition
|
||||||
|
|
||||||
- name: Create symbolic link
|
- name: "[Arch] Create symbolic link"
|
||||||
become: yes
|
become: yes
|
||||||
file:
|
file:
|
||||||
src: "/usr/bin/intellij-idea-ultimate-edition"
|
src: "/usr/bin/intellij-idea-ultimate-edition"
|
||||||
|
6
roles/lightdm/tasks/arch.yml
Normal file
6
roles/lightdm/tasks/arch.yml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
- name: "[Arch] install lightdm"
|
||||||
|
become: yes
|
||||||
|
community.general.pacman:
|
||||||
|
name:
|
||||||
|
- lightdm
|
||||||
|
- lightdm-gtk-greeter
|
6
roles/lightdm/tasks/main.yml
Normal file
6
roles/lightdm/tasks/main.yml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
- import_tasks: ubuntu.yml
|
||||||
|
when: ansible_distribution == "Ubuntu"
|
||||||
|
|
||||||
|
- import_tasks: arch.yml
|
||||||
|
when: ansible_distribution == "Archlinux"
|
6
roles/postinstall/tasks/main.yml
Normal file
6
roles/postinstall/tasks/main.yml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
- name: "[All] Enable lightdm service"
|
||||||
|
become: yes
|
||||||
|
ansible.builtin.systemd:
|
||||||
|
name: lightdm
|
||||||
|
state: started
|
||||||
|
enabled: yes
|
Loading…
Reference in New Issue
Block a user