Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/roles/fact_regular_users.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Defines the following facts:

- `fact_regular_users` -- list of dicts containing user info about regular users.
- `fact_co_groups` -- dict with group names from the CO as keys, and lists of usernames in those groups as values.
- `fact_src_ansible_venv` -- string path to the python environment currently being used by Ansible. Can be used to install additional `pip` dependencies for Ansible modules into the correct environment. Empty string if Ansible is not using a virtual environment (but instead the global system python environment).
- `fact_src_ansible_venv` -- string path to the python environment currently being used by Ansible. Can be used to install additional `pip` dependencies for Ansible modules into the correct environment. Empty string if Ansible is not using a virtual environment (but instead the global system python environment).

## Requires
Linux flavor operating system.
Expand Down
2 changes: 2 additions & 0 deletions playbooks/roles/ibridges/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
name: pipx_install_systemwide
vars:
pipx_install_systemwide_package: ibridgesgui
pipx_install_systemwide_use_uv: true
pipx_install_systemwide_options:
include_deps: true
pipx_install_systemwide_python: "{{ ibridges_python_path | default('/usr/bin/python3') }}"
Expand All @@ -19,6 +20,7 @@
ansible.builtin.include_role:
name: pipx_install_systemwide
vars:
pipx_install_systemwide_use_uv: true
pipx_install_systemwide_package: ibridges
pipx_install_systemwide_python: "{{ ibridges_python_path | default('/usr/bin/python3') }}"
pipx_install_systemwide_extra_packages: "{{ ibridges_install_plugins }}"
Loading