Install certain deb files for applicable systems.
This commit is contained in:
parent
d536e167c0
commit
a42143299f
@ -45,6 +45,7 @@
|
|||||||
become: true
|
become: true
|
||||||
|
|
||||||
pre_tasks:
|
pre_tasks:
|
||||||
|
- include: facts/general/system.yml
|
||||||
- include: facts/workstation/package.yml
|
- include: facts/workstation/package.yml
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
@ -57,6 +58,9 @@
|
|||||||
- include: tasks/workstation/linux/software/flatpaks.yml
|
- include: tasks/workstation/linux/software/flatpaks.yml
|
||||||
when: ansible_system == "Linux" and flatpak_distro
|
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
|
- name: Workstation | Linux | Packages | Not Implemented
|
||||||
shell: echo "Not implemented yet. :("
|
shell: echo "Not implemented yet. :("
|
||||||
when: ansible_system == "Linux" and not flatpak_distro
|
when: ansible_system == "Linux" and not flatpak_distro
|
||||||
|
8
tasks/workstation/linux/software/debs.yml
Normal file
8
tasks/workstation/linux/software/debs.yml
Normal 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
|
Loading…
x
Reference in New Issue
Block a user