moved archey from common to style

This commit is contained in:
Tobias J. Endres 2025-02-16 18:19:54 +01:00
parent c3369319eb
commit 18cf4e77c5
3 changed files with 12 additions and 12 deletions

View File

@ -11,18 +11,6 @@
state: present
become: true
- name: Copy the .deb package to the remote host
copy:
src: archey4_4.15.0.0-1_all.deb # Name of the .deb file in the `files` folder
dest: /tmp/archey4_4.15.0.0-1_all.deb
mode: '0644'
- name: Install the .deb package
apt:
deb: /tmp/archey4_4.15.0.0-1_all.deb
state: present
become: true
- name: Set zsh as the default shell
shell: chsh -s $(which zsh) {{ ansible_user }}
become: true

View File

@ -24,6 +24,18 @@
state: directory
mode: '0755'
- name: Copy the archey 4 .deb package to the remote host
copy:
src: archey4_4.15.0.0-1_all.deb # Name of the .deb file in the `files` folder
dest: /tmp/archey4_4.15.0.0-1_all.deb
mode: '0644'
- name: Install archey 4
apt:
deb: /tmp/archey4_4.15.0.0-1_all.deb
state: present
become: true
- name: Create symlink from batcat to bat
file:
src: /usr/bin/batcat