Install certain deb files for applicable systems.

This commit is contained in:
Hyperling 2021-04-03 09:18:59 -05:00
parent d536e167c0
commit a42143299f
2 changed files with 12 additions and 0 deletions

View File

@ -45,6 +45,7 @@
become: true
pre_tasks:
- include: facts/general/system.yml
- include: facts/workstation/package.yml
tasks:
@ -57,6 +58,9 @@
- include: tasks/workstation/linux/software/flatpaks.yml
when: ansible_system == "Linux" and flatpak_distro
- include: tasks/workstation/linux/software/debs.yml
when: ansible_pkg_mgr == "apt"
- name: Workstation | Linux | Packages | Not Implemented
shell: echo "Not implemented yet. :("
when: ansible_system == "Linux" and not flatpak_distro

View File

@ -0,0 +1,8 @@
---
# Install .deb packages on Debian and Ubuntu machines.
- name: Workstattion | Linux | Software | Apt Distro | .deb Files
shell: 'dpkg -i {{ leet_drive }}/InstallFiles/Programs/{{ item }}.deb'
loop:
- atomicwallet
ignore_errors: yes