From a42143299f62518289f3f4782abb71d13d20df3c Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sat, 3 Apr 2021 09:18:59 -0500 Subject: [PATCH] Install certain deb files for applicable systems. --- local.yml | 4 ++++ tasks/workstation/linux/software/debs.yml | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 tasks/workstation/linux/software/debs.yml diff --git a/local.yml b/local.yml index dc75d4f..926e136 100644 --- a/local.yml +++ b/local.yml @@ -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 diff --git a/tasks/workstation/linux/software/debs.yml b/tasks/workstation/linux/software/debs.yml new file mode 100644 index 0000000..679d89d --- /dev/null +++ b/tasks/workstation/linux/software/debs.yml @@ -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 \ No newline at end of file