Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #364

Merged
merged 1 commit into from
Sep 12, 2023
Merged
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Also check [Before you install](https://docs.bigbluebutton.org/administration/in
| | `bbb_apps_akka_log_level` | set the loglevel for bbb-apps-akka | `ERROR` | |
| | `bbb_meteor` | overwrite settings in meteor | `{}` | |
| | `bbb_kurento_interfaces` | Specify the listening interfaces for kurento | `{{ [ansible_default_ipv4.interface, 'lo'] }}` | |
| | `bbb_nodejs_version` | version of nodejs to be installed | `12.x` | |
| | `bbb_nodejs_version` | version of nodejs to be installed | `18.x` | |
| | `bbb_system_locale` | the system locale to use | `en_US.UTF-8` | |
| | `bbb_secret` | define the shared secret for bbb | `none` | Set this if you want to define the bbb-secret. Otherwise the secret is generated by bbb. Supported characters are `[a-zA-Z0-9]` |
| | `bbb_freeswitch_ipv6` | Enable IPv6 support in FreeSWITCH | `true` | Disable to fix [FreeSWITCH IPv6 error][bbb_freeswitch_ipv6] |
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ bbb_firewall_ufw:
# https://pypi.org/project/docker-compose/#history
bbb_docker_compose_version: 1.29.2

bbb_nodejs_version: 16.x
bbb_nodejs_version: 18.x

# Cluster proxy variables
# Define the following variables to set up the cluster proxy
Expand Down
2 changes: 1 addition & 1 deletion tasks/installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- name: Set version of java to use
become: true
file:
src: /usr/lib/jvm/java-11-openjdk-amd64/bin/java
src: /usr/lib/jvm/java-17-openjdk-amd64/bin/java
dest: /etc/alternatives/java
state: link

Expand Down
2 changes: 1 addition & 1 deletion vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ bbb_required_packages:
- python3-setuptools
- python3-pip
- python3-wheel
- openjdk-11-jdk
- openjdk-17-jdk
- python3-passlib
- python-passlib
- net-tools
Expand Down
Loading