Compare commits

..

No commits in common. "bcc4748d97e81a9eff9d7e2c62507f8ab6db872b" and "6fedffb882222801bd87e90bdf04a413b2365455" have entirely different histories.

9 changed files with 60 additions and 15 deletions

View file

@ -5,6 +5,9 @@ dependencies:
- pip - pip
- rsync - rsync
- rclone - rclone
- kitty
- alacritty
- nix
- zsh - zsh
- antidote - antidote
- tmux - tmux

View file

@ -0,0 +1,9 @@
---
# git on alpine
- name: (alp) installing git
community.general.apk:
name: git
state: present
update_cache: true
become: true

View file

@ -0,0 +1,9 @@
---
# git on Archlinux
- name: (arch) installing git
community.general.pacman:
name: git
state: present
update_cache: true
become: true

View file

@ -0,0 +1,9 @@
---
# git on Debian
- name: (deb) installing git
ansible.builtin.apt:
name: git
state: present
update_cache: true
become: true

View file

@ -0,0 +1,9 @@
---
# git on RedHat
- name: (rHa) installing git
ansible.builtin.yum:
name: git
state: present
update_cache: true
become: true

View file

@ -0,0 +1,9 @@
---
# git on void
- name: (void) installing git
community.general.xbps:
name: git
state: present
update_cache: true
become: true

View file

@ -2,11 +2,12 @@
# Installing and configuring git # Installing and configuring git
- name: Installation - name: Installation
ansible.builtin.package: ansible.builtin.include_tasks: "install/{{ ansible_os_family | lower }}.yml"
name: git args:
state: present apply:
update_cache: true tags:
become: true - git
- git-install
tags: tags:
- git - git
- git-install - git-install

View file

@ -2,11 +2,12 @@
# Vim # Vim
- name: Installation - name: Installation
ansible.builtin.package: ansible.builtin.include_tasks: "install/{{ ansible_os_family | lower }}.yml"
name: vim args:
state: present apply:
update_cache: true tags:
become: true - vim
- vim-install
tags: tags:
- vim - vim
- vim-install - vim-install

View file

@ -1,5 +0,0 @@
---
- hosts: all
roles:
- alacritty
- kitty