Skip to content

Commit

Permalink
add debian
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahms committed Nov 16, 2023
1 parent 3f81acd commit dd7fa30
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions roles/setup_dbt7/tasks/dbt7_install_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,29 @@
when: ansible_os_family == "RedHat"
become: true

- name: Install DBT-7 supporting packages
ansible.builtin.package:
name:
- bc
- byacc
- flex
- make
- fonts-dejavu
- fontconfig
- linux-perf
- rsync
- tmux
- fuse
- libfuse2
- sysstat
- gcc
- patch
- psmisc
- unzip
state: present
when: ansible_os_family == "Debian"
become: true

- name: Download DBT-7 AppImage
ansible.builtin.get_url:
url: "{{ dbt7_appimage }}"
Expand Down

0 comments on commit dd7fa30

Please sign in to comment.