Skip to content

Commit

Permalink
Merge pull request #3422 from holta/block-JupHub+CalWeb-on-32bit
Browse files Browse the repository at this point in the history
Block iiab-install of JupyterHub & Calibre-Web on 32-bit, til RasPiOS fixes Rust, wheels / cryptography
  • Loading branch information
holta committed Nov 10, 2022
2 parents b5105ae + 06c4b7a commit 8ade0db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion roles/6-generic-apps/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
- name: JUPYTERHUB
include_role:
name: jupyterhub
when: jupyterhub_install
when: jupyterhub_install and ansible_machine is search("64") # 2022-11-10: Avoid installing on 32-bit, until RasPiOS fixes Rust (PR #3421)

# UNMAINTAINED
- name: LOKOLE
Expand Down
2 changes: 1 addition & 1 deletion roles/9-local-addons/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
- name: CALIBRE-WEB
include_role:
name: calibre-web
when: calibreweb_install
when: calibreweb_install and ansible_machine is search("64") # 2022-11-10: Avoid installing on 32-bit, until RasPiOS fixes Rust (PR #3421)

# KEEP NEAR THE VERY END as this installs dependencies from Debian's 'testing' branch!
- name: CALIBRE
Expand Down

0 comments on commit 8ade0db

Please sign in to comment.