Skip to content

Commit e0e27d0

Browse files
Merge pull request #3 from ernstleierzopf/development
Development
2 parents dece8f8 + 9b699b7 commit e0e27d0

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ aminer_user: "aminer"
1414
aminer_group: "aminer"
1515
aminer_docbookxslpath: "/usr/share/xml/docbook/stylesheet/docbook-xsl/manpages/docbook.xsl"
1616
aminer_usershell: /usr/sbin/nologin
17-
aminerrest_repopath: null
17+
aminerrest_repopath: False

tasks/main.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
mode: 0755
139139

140140
- name: Install orjson
141-
moreati.uv.pip:
141+
pip:
142142
name: orjson
143143
virtualenv: /usr/lib/logdata-anomaly-miner/.venv
144144
state: latest
@@ -264,49 +264,49 @@
264264
name: fastapi
265265
virtualenv: /usr/lib/logdata-anomaly-miner/.venv
266266
state: latest
267-
when: aminerrest_repopath is defined and aminerrest_repopath | length > 0
267+
when: aminerrest_repopath != False
268268

269269
- name: Install python-jose
270270
pip:
271271
name: python-jose
272272
virtualenv: /usr/lib/logdata-anomaly-miner/.venv
273273
state: latest
274-
when: aminerrest_repopath is defined and aminerrest_repopath | length > 0
274+
when: aminerrest_repopath != False
275275

276276
- name: Install passlib
277277
pip:
278278
name: passlib
279279
virtualenv: /usr/lib/logdata-anomaly-miner/.venv
280280
state: latest
281-
when: aminerrest_repopath is defined and aminerrest_repopath | length > 0
281+
when: aminerrest_repopath != False
282282

283283
- name: Install pydantic
284284
pip:
285285
name: pydantic
286286
virtualenv: /usr/lib/logdata-anomaly-miner/.venv
287287
state: latest
288-
when: aminerrest_repopath is defined and aminerrest_repopath | length > 0
288+
when: aminerrest_repopath != False
289289

290290
- name: Install httpx
291291
pip:
292292
name: httpx
293293
virtualenv: /usr/lib/logdata-anomaly-miner/.venv
294294
state: latest
295-
when: aminerrest_repopath is defined and aminerrest_repopath | length > 0
295+
when: aminerrest_repopath != False
296296

297297
- name: Install uvicorn
298298
pip:
299299
name: uvicorn
300300
virtualenv: /usr/lib/logdata-anomaly-miner/.venv
301301
state: latest
302-
when: aminerrest_repopath is defined and aminerrest_repopath | length > 0
302+
when: aminerrest_repopath != False
303303

304304
- name: Install python-multipart
305305
pip:
306306
name: python-multipart
307307
virtualenv: /usr/lib/logdata-anomaly-miner/.venv
308308
state: latest
309-
when: aminerrest_repopath is defined and aminerrest_repopath | length > 0
309+
when: aminerrest_repopath != False
310310

311311
- name: Set venv activate permissions
312312
file:

0 commit comments

Comments
 (0)