Added ubuntu setup

Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
This commit is contained in:
Tuan-Dat Tran
2025-02-10 21:33:40 +01:00
parent 09bbc04959
commit 6dc7e5ac27
25 changed files with 584 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
---
- name: Download Veracrypt deb
ansible.builtin.get_url:
url: "https://launchpad.net/veracrypt/trunk/1.26.20/+download/veracrypt-1.26.20-Debian-12-{{ aarch }}.deb"
dest: "/tmp/veracrypt.deb"
- name: Install Veracrypt
ansible.builtin.apt:
deb: "/tmp/veracrypt.deb"
state: present
become: true
- name: Remove Veracrypt deb
ansible.builtin.file:
path: "/tmp/veracrypt.deb"
state: absent