refactor(lint,fqdn-names): Full FQDN names for modules

Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
This commit is contained in:
Tuan-Dat Tran
2025-01-22 00:06:35 +01:00
parent 87fb4fa5da
commit 71532a6d25
15 changed files with 107 additions and 85 deletions

View File

@@ -1,36 +1,36 @@
---
- name: Install starship
become: false
shell: curl -sS https://starship.rs/install.sh | sh -s -- -y
ansible.builtin.shell: curl -sS https://starship.rs/install.sh | sh -s -- -y
args:
creates: "{{ ansible_env.HOME }}/.config/starship.toml" # Adjust based on where starship installs
- name: Download EurKey deb
get_url:
ansible.builtin.get_url:
url: https://eurkey.steffen.bruentjen.eu/download/debian/eurkey.deb
dest: "/tmp/eurkey.deb"
- name: Install EurKey
apt:
ansible.builtin.apt:
deb: "/tmp/eurkey.deb"
state: present
- name: Remove EurKey deb
file:
ansible.builtin.file:
path: "/tmp/eurkey.deb"
state: absent
- name: Download Veracrypt deb
get_url:
ansible.builtin.get_url:
url: https://launchpad.net/veracrypt/trunk/1.26.14/+download/veracrypt-1.26.14-Debian-12-amd64.deb
dest: "/tmp/veracrypt.deb"
- name: Install Veracrypt
apt:
ansible.builtin.apt:
deb: "/tmp/veracrypt.deb"
state: present
- name: Remove Veracrypt deb
file:
ansible.builtin.file:
path: "/tmp/veracrypt.deb"
state: absent