Skip to content

Commit

Permalink
updated building wiht pip and passlib
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz committed Nov 6, 2024
1 parent 1ca53e3 commit 40c9d3f
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
17 changes: 17 additions & 0 deletions conda/conda.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
---
- name: PRE_TASK Update apt cache
become: true
ansible.builtin.apt:
upgrade: true
update_cache: true
autoremove: true
autoclean: true


- name: Pip
ansible.builtin.apt:
name: python3-pip
state: latest
- name: Install python3-passlib
apt:
name: python3-passlib

Check failure on line 17 in conda/conda.yml

View workflow job for this annotation

GitHub Actions / build

yaml[indentation]

Wrong indentation: expected 8 but found 4
state: present
- name: Download Miniconda
get_url:
url: https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh

Check failure on line 21 in conda/conda.yml

View workflow job for this annotation

GitHub Actions / build

yaml[indentation]

Wrong indentation: expected 8 but found 4
Expand Down
12 changes: 12 additions & 0 deletions guacamole/guacamole.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
---
- name: PRE_TASK Update apt cache
become: true
ansible.builtin.apt:
upgrade: true
update_cache: true
autoremove: true
autoclean: true


- name: Pip
ansible.builtin.apt:
name: python3-pip
state: latest
- name: Install python3-passlib
apt:
name: python3-passlib
Expand Down
17 changes: 17 additions & 0 deletions rstudio/rstudio.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
---
- name: PRE_TASK Update apt cache
become: true
ansible.builtin.apt:
upgrade: true
update_cache: true
autoremove: true
autoclean: true


- name: Pip
ansible.builtin.apt:
name: python3-pip
state: latest
- name: Install python3-passlib
apt:
name: python3-passlib
state: present
- name: Setup password for default user
become: true
ansible.builtin.user:
Expand Down

0 comments on commit 40c9d3f

Please sign in to comment.