Skip to content

Commit

Permalink
update dbt2 roles to install appropriate debian packages
Browse files Browse the repository at this point in the history
  • Loading branch information
mw2q committed Nov 1, 2023
1 parent 55a25e4 commit 3f81acd
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
15 changes: 15 additions & 0 deletions roles/setup_dbt2/tasks/dbt2_install_packages_client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,21 @@
when: ansible_os_family == "RedHat"
become: true

- name: Install DBT-2 Client supporting packages
ansible.builtin.package:
name:
- fonts-dejavu
- fontconfig
- linux-perf
- rsync
- tmux
- fuse
- libfuse2
- sysstat
state: present
when: ansible_os_family == "Debian"
become: true

- name: Download DBT-2 AppImage
ansible.builtin.get_url:
url: "{{ dbt2_appimage }}"
Expand Down
15 changes: 15 additions & 0 deletions roles/setup_dbt2/tasks/dbt2_install_packages_db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,21 @@
when: ansible_os_family == "RedHat"
become: true

- name: Install DBT-2 supporting packages
ansible.builtin.package:
name:
- fonts-dejavu
- fontconfig
- linux-perf
- rsync
- tmux
- fuse
- libfuse2
- sysstat
state: present
when: ansible_os_family == "Debian"
become: true

- name: Download DBT-2 AppImage
ansible.builtin.get_url:
url: "{{ dbt2_appimage }}"
Expand Down
15 changes: 15 additions & 0 deletions roles/setup_dbt2/tasks/dbt2_install_packages_driver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,21 @@
when: ansible_os_family == "RedHat"
become: true

- name: Install DBT-2 Driver supporting packages
ansible.builtin.package:
name:
- fonts-dejavu
- fontconfig
- linux-perf
- rsync
- tmux
- fuse
- libfuse2
- sysstat
state: present
when: ansible_os_family == "Debian"
become: true

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

0 comments on commit 3f81acd

Please sign in to comment.