37 lines
975 B
YAML
37 lines
975 B
YAML
---
|
|
- name: Install starship
|
|
become: false
|
|
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
|
|
ansible.builtin.get_url:
|
|
url: https://eurkey.steffen.bruentjen.eu/download/debian/eurkey.deb
|
|
dest: "/tmp/eurkey.deb"
|
|
|
|
- name: Install EurKey
|
|
ansible.builtin.apt:
|
|
deb: "/tmp/eurkey.deb"
|
|
state: present
|
|
|
|
- name: Remove EurKey deb
|
|
ansible.builtin.file:
|
|
path: "/tmp/eurkey.deb"
|
|
state: absent
|
|
|
|
- name: Download Veracrypt deb
|
|
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
|
|
ansible.builtin.apt:
|
|
deb: "/tmp/veracrypt.deb"
|
|
state: present
|
|
|
|
- name: Remove Veracrypt deb
|
|
ansible.builtin.file:
|
|
path: "/tmp/veracrypt.deb"
|
|
state: absent
|