Compare commits
2 commits
6fedffb882
...
bcc4748d97
Author | SHA1 | Date | |
---|---|---|---|
bcc4748d97 | |||
47ffd49eed |
9 changed files with 15 additions and 60 deletions
|
@ -5,9 +5,6 @@ dependencies:
|
||||||
- pip
|
- pip
|
||||||
- rsync
|
- rsync
|
||||||
- rclone
|
- rclone
|
||||||
- kitty
|
|
||||||
- alacritty
|
|
||||||
- nix
|
|
||||||
- zsh
|
- zsh
|
||||||
- antidote
|
- antidote
|
||||||
- tmux
|
- tmux
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
# git on alpine
|
|
||||||
|
|
||||||
- name: (alp) installing git
|
|
||||||
community.general.apk:
|
|
||||||
name: git
|
|
||||||
state: present
|
|
||||||
update_cache: true
|
|
||||||
become: true
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
# git on Archlinux
|
|
||||||
|
|
||||||
- name: (arch) installing git
|
|
||||||
community.general.pacman:
|
|
||||||
name: git
|
|
||||||
state: present
|
|
||||||
update_cache: true
|
|
||||||
become: true
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
# git on Debian
|
|
||||||
|
|
||||||
- name: (deb) installing git
|
|
||||||
ansible.builtin.apt:
|
|
||||||
name: git
|
|
||||||
state: present
|
|
||||||
update_cache: true
|
|
||||||
become: true
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
# git on RedHat
|
|
||||||
|
|
||||||
- name: (rHa) installing git
|
|
||||||
ansible.builtin.yum:
|
|
||||||
name: git
|
|
||||||
state: present
|
|
||||||
update_cache: true
|
|
||||||
become: true
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
# git on void
|
|
||||||
|
|
||||||
- name: (void) installing git
|
|
||||||
community.general.xbps:
|
|
||||||
name: git
|
|
||||||
state: present
|
|
||||||
update_cache: true
|
|
||||||
become: true
|
|
|
@ -2,12 +2,11 @@
|
||||||
# Installing and configuring git
|
# Installing and configuring git
|
||||||
|
|
||||||
- name: Installation
|
- name: Installation
|
||||||
ansible.builtin.include_tasks: "install/{{ ansible_os_family | lower }}.yml"
|
ansible.builtin.package:
|
||||||
args:
|
name: git
|
||||||
apply:
|
state: present
|
||||||
tags:
|
update_cache: true
|
||||||
- git
|
become: true
|
||||||
- git-install
|
|
||||||
tags:
|
tags:
|
||||||
- git
|
- git
|
||||||
- git-install
|
- git-install
|
||||||
|
|
|
@ -2,12 +2,11 @@
|
||||||
# Vim
|
# Vim
|
||||||
|
|
||||||
- name: Installation
|
- name: Installation
|
||||||
ansible.builtin.include_tasks: "install/{{ ansible_os_family | lower }}.yml"
|
ansible.builtin.package:
|
||||||
args:
|
name: vim
|
||||||
apply:
|
state: present
|
||||||
tags:
|
update_cache: true
|
||||||
- vim
|
become: true
|
||||||
- vim-install
|
|
||||||
tags:
|
tags:
|
||||||
- vim
|
- vim
|
||||||
- vim-install
|
- vim-install
|
||||||
|
|
5
terminals.yml
Normal file
5
terminals.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
- hosts: all
|
||||||
|
roles:
|
||||||
|
- alacritty
|
||||||
|
- kitty
|
Loading…
Add table
Add a link
Reference in a new issue