Add kitty role for Linux

This commit is contained in:
Kenneth Benzie 2023-06-06 19:39:58 +01:00
parent 67a37e0a56
commit 49b292126e
4 changed files with 22 additions and 0 deletions

View File

@ -1,3 +1,6 @@
--- ---
- import_playbook: LinuxCLI.yaml - import_playbook: LinuxCLI.yaml
- import_playbook: UnixGUI.yaml - import_playbook: UnixGUI.yaml
- hosts: localhost
roles:
- role: kitty

View File

@ -0,0 +1,6 @@
---
- name: install apt package
become: true
apt:
name: kitty
state: latest

View File

@ -0,0 +1,6 @@
---
- name: install dnf package
become: true
dnf:
name: kitty
state: latest

View File

@ -0,0 +1,7 @@
---
- include_tasks: '{{ansible_os_family}}.yaml'
- name: clone config repo
git:
repo: git@code.infektor.net:config/kitty.git
dest: ~/.config/kitty