Skip to content

Commit

Permalink
Merge pull request #38 from ernstleierzopf/development
Browse files Browse the repository at this point in the history
add ubuntu 24.04 support.
  • Loading branch information
whotwagner authored Nov 11, 2024
2 parents fea81bc + 2d06f25 commit 03efbc0
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@
when: ansible_distribution == "Debian" and ansible_distribution_major_version == '12'
tags: vars

- name: Include Ubuntu 24.04 Variables
include_vars: ubuntu-2404.yml
when: ansible_distribution == "Ubuntu" and ansible_distribution_major_version == '24'
tags: vars

- name: Include Ubuntu 22.04 Variables
include_vars: ubuntu-2204.yml
when: ansible_distribution == "Ubuntu" and ansible_distribution_major_version == '22'
Expand Down
24 changes: 24 additions & 0 deletions vars/ubuntu-2404.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
aminer_packages:
- python3
- python3-pip
- python3-tz
- python3-scipy
- python3-numpy
- python3-setuptools
- python3-dateutil
- python3-six
- python3-kafka
- python3-urllib3
- python3-statsmodels
- python3-defusedxml
- python3-yaml
- python3-patsy
- libzmq3-dev
- xsltproc
- docbook-xsl
- gzip
- python3-pylibacl
- libacl1-dev
- mypy
aminer_usershell: /usr/sbin/nologin
aminer_pythonpath: ['/usr/lib/python3/dist-packages', '/usr/local/lib/python3.12/dist-packages', '/usr/lib/python3.12/dist-packages']

0 comments on commit 03efbc0

Please sign in to comment.