Skip to content

Commit 6535cd7

Browse files
authored
Merge pull request #39 from ernstleierzopf/development
add ubuntu 24.04 support.
2 parents a5f3770 + 2d06f25 commit 6535cd7

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

tasks/main.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@
2020
when: ansible_distribution == "Debian" and ansible_distribution_major_version == '12'
2121
tags: vars
2222

23+
- name: Include Ubuntu 24.04 Variables
24+
include_vars: ubuntu-2404.yml
25+
when: ansible_distribution == "Ubuntu" and ansible_distribution_major_version == '24'
26+
tags: vars
27+
2328
- name: Include Ubuntu 22.04 Variables
2429
include_vars: ubuntu-2204.yml
2530
when: ansible_distribution == "Ubuntu" and ansible_distribution_major_version == '22'

vars/ubuntu-2404.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
aminer_packages:
2+
- python3
3+
- python3-pip
4+
- python3-tz
5+
- python3-scipy
6+
- python3-numpy
7+
- python3-setuptools
8+
- python3-dateutil
9+
- python3-six
10+
- python3-kafka
11+
- python3-urllib3
12+
- python3-statsmodels
13+
- python3-defusedxml
14+
- python3-yaml
15+
- python3-patsy
16+
- libzmq3-dev
17+
- xsltproc
18+
- docbook-xsl
19+
- gzip
20+
- python3-pylibacl
21+
- libacl1-dev
22+
- mypy
23+
aminer_usershell: /usr/sbin/nologin
24+
aminer_pythonpath: ['/usr/lib/python3/dist-packages', '/usr/local/lib/python3.12/dist-packages', '/usr/lib/python3.12/dist-packages']

0 commit comments

Comments
 (0)