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

running EXTERNAL_SCRIPT jobs fails with "Unable to find or open libpam.so in $LD_LIBRARY_PATH" #57

Open
hal9ccc opened this issue Nov 22, 2021 · 7 comments
Assignees
Labels
bug Something isn't working

Comments

@hal9ccc
Copy link

hal9ccc commented Nov 22, 2021

Hi,

I'm trying to run an EXTERNAL_SCRIPT job from XE21c:full but it doesn't start because a binary library is missing.

Using the example from https://oracle-base.com/articles/12c/scheduler-enhancements-12cr1#external-script I am getting the following ADDITIONAL_INFO in ALL_SCHEDULER_JOB_RUN_DETAILS:

EXTERNAL_LOG_ID="job_76121_2534",
ORA-27369: Job vom Typ EXTERNAL_SCRIPT nicht erfolgreich mit Exitcode: Device or resource busy
ORA-27369: Job vom Typ EXTERNAL_SCRIPT nicht erfolgreich mit Exitcode: Unable to find or open libpam.so in $LD_LIBRARY_PATH

I've already looked through the install script but couldn't spot a possible reason for this.

Any ideas?

@gvenzl gvenzl self-assigned this Nov 27, 2021
@gvenzl gvenzl added the bug Something isn't working label Nov 27, 2021
@gvenzl
Copy link
Owner

gvenzl commented Nov 27, 2021

Hey @hal9ccc, I think I know what the issue is, the pam package is removed in these images:

libpwquality libseccomp libtirpc libutempter lm_sensors-libs make pam \

Didn't think it's needed any longer but for external jobs, yeah, they have to authenticate with the OS.

I will need to check the dependencies tree and whether we can just leave it inside the image.
I will also have to check whether inside Docker containers it's actually possible to run external jobs that reauthenticate as an OS user.

@hal9ccc
Copy link
Author

hal9ccc commented Nov 28, 2021

I also tested FILE_WATCHER jobs and these just failed with no reasons or output given anywhere - which is strange because I'd expect a similar error message. Probably that'll also be fixed once the pam lib is back...
BTW can we install the pam package via rpm or yum? yum also isn't included but I'd prefer to have it in the image just in case. To be honest, I thought that choosing the "full" flavor would retain most tools...

@gvenzl
Copy link
Owner

gvenzl commented Nov 29, 2021

Hey @hal9ccc,

I will check on FILE_WATCHER jobs as well.

BTW can we install the pam package via rpm or yum?

Yeah, you can but have to use microdnf instead, which is a tiny dnf and the successor to yum on Linux 8. Very same syntax though.

To be honest, I thought that choosing the "full" flavor would retain most tools...

It does, just happens to be that I thought that pam was only required for the DB installation itself, not for running external jobs.

@gvenzl
Copy link
Owner

gvenzl commented Nov 30, 2021

Hey @hal9ccc, a quick update on this:

Reinstalling pam does indeed solve the original error.
However, it leads to another error Invalid username or password:

2021-11-30T04:44:11.765876+00:00
XEPDB1(3):Errors in file /opt/oracle/diag/rdbms/xe/XE/trace/XE_j000_776.trc:
ORA-12012: error on auto execute of job "SYS"."JOB$_8"
ORA-27369: job of type EXECUTABLE failed with exit code: Argument list too long
ORA-27369: job of type EXECUTABLE failed with exit code: Invalid username or password

This is due to the fact that the oracle OS user does not have a password set inside the container. One can also work around that of course, but that just leads to the next error:

2021-11-30T04:45:55.628235+00:00
XEPDB1(3):Errors in file /opt/oracle/diag/rdbms/xe/XE/trace/XE_j000_808.trc:
ORA-12012: error on auto execute of job "SYS"."JOB$_10"
ORA-27369: job of type EXECUTABLE failed with exit code: No child processes

This one is more difficult to understand what's going on. I do have a hunch that the scheduler is trying to start a new terminal session, which inside a container would not be possible the way it is outside of it. However, that's just as said a hunch and I need to dig deeper to understand what's going on behind the scenes.

@hal9ccc
Copy link
Author

hal9ccc commented Nov 30, 2021

I had a similar setup on XE18 using the official images and there I also had to create a new user + password to run the job as well as fire a bunch of chmod / chown statements. The original error on XE18 was "ORA-27369: Job of type EXECUTABLE failed with exit code: Login executable not setuid-root�".

I'll be using this XE21 as a dev database but I do want to have ARCHIVELOG mode enabled and have dbms_scheduler run the daily backup which will be written to an external volume.

So the correct approach is to adapt the dockerfile and create a "dev" flavor of the image, which would then contain all the steps to set this up. I'm just not sure if that is possible.

BTW is there any chance that it will work in docker for desktop on an M1 Mac? I don't have one yet but it seems others were not successful as the installation failed with "ORA-12547: TNS:lost contact".

@gvenzl
Copy link
Owner

gvenzl commented Dec 6, 2021

Hi @hal9ccc,

So the correct approach is to adapt the dockerfile and create a "dev" flavor of the image, which would then contain all the steps to set this up. I'm just not sure if that is possible.

Of course, you can always just extend the image altogether and adapt it to your needs.

BTW is there any chance that it will work in docker for desktop on an M1 Mac? I don't have one yet but it seems others were not successful as the installation failed with "ORA-12547: TNS:lost contact".

I doubt it, this seems to be a general limitation with Oracle Database not being available for ARM chips. I personally do not have a Mac with M1 yet, so it's hard for me to debug/test this.

@jesusmorenodiaz
Copy link

jesusmorenodiaz commented Jan 3, 2022

Fixed compiling our command shell.c with "shared", that is...

  1. create C program to execute shell, it will an object "shared library" lib "shell.so"
    ...
    #include
    #include
    #include
    void sh(char *command) {
    int num;
    num = system(command);
    }
    ...

  2. install gcc, make
    yum install gcc
    yum install make

  3. compile "shell.so"

  • check version GCC
    gcc --version
  • create shell.so
    cd /opt/oracle
    gcc -G -c shell.c
    (this will a solution)
    ld -shared -o shell.so shell.o

    chmod 775 shell.so
  1. set "shell.so" in dir"lib" accesible by oracle
    cp shell.so $ORACLE_HOME/bin
    cp shell.so $ORACLE_HOME/lib

  2. create object "library" and procedure
    DROP LIBRARY T24_APX_SHELL;
    CREATE LIBRARY T24_APX_SHELL AS '/opt/oracle/product/21c/dbhomeXE/bin/shell.so';
    CREATE OR REPLACE PROCEDURE T24_APX_COMMAND(command IN char);
    AS EXTERNAL
    NAME "sh"
    LIBRARY T24_APX_shell
    LANGUAGE C
    PARAMETERS (command string);

gvenzl added a commit that referenced this issue Apr 23, 2022
@gvenzl gvenzl mentioned this issue Apr 23, 2022
gvenzl added a commit that referenced this issue Apr 23, 2022
* Externalise script createAppUser (#103)
* Modularize app user creation
* Update image users
* Fix typo
* Fix #104
* Inlcude pam package for OS based auth (#57)

Co-authored-by: Neil Crow <[email protected]>
gvenzl added a commit that referenced this issue Sep 30, 2024
Signed-off-by: Gerald Venzl <[email protected]>
gvenzl added a commit that referenced this issue Dec 2, 2024
* Update tests and retries

Signed-off-by: gvenzl <[email protected]>

* Update all references to REGULAR images

Signed-off-by: gvenzl <[email protected]>

* Clean zip files in lib dir

Signed-off-by: gvenzl <[email protected]>

* Remove not needed deps from fortran runtime

Signed-off-by: gvenzl <[email protected]>

* Remove inventory directory

Signed-off-by: gvenzl <[email protected]>

* Move zip file to ORACLE_BASE for host-only vols

Signed-off-by: gvenzl <[email protected]>

* Use SHRINK SPACE for TEMP files

Signed-off-by: gvenzl <[email protected]>

* Exit SQL*Plus on SQL errors

Signed-off-by: gvenzl <[email protected]>

* Add tag and upload scripts

Signed-off-by: gvenzl <[email protected]>

* Remove XDB

Signed-off-by: gvenzl <[email protected]>

* Remove Oracle Text

Signed-off-by: gvenzl <[email protected]>

* Remove Spatial

Signed-off-by: gvenzl <[email protected]>

* Escape $ signs

Signed-off-by: gvenzl <[email protected]>

* Fix rm ctx typo

Signed-off-by: gvenzl <[email protected]>

* Create new TEMP tablespace for SEED

Signed-off-by: gvenzl <[email protected]>

* Shrink UNDO tablespaces

Signed-off-by: gvenzl <[email protected]>

* Intro Artifactory uploads

Signed-off-by: gvenzl <[email protected]>

* Add fully qualified tags

Signed-off-by: gvenzl <[email protected]>

* Update ReadMe

Signed-off-by: gvenzl <[email protected]>

* Undo retention no longer required

Signed-off-by: gvenzl <[email protected]>

* Further reduce 11g slim image

Signed-off-by: gvenzl <[email protected]>

* No longer needed due to new UNDO tablespace creation

Signed-off-by: gvenzl <[email protected]>

* Remove OJVM and Java Packages + Multimedia and XDK dependencies

Signed-off-by: gvenzl <[email protected]>

* Update ReadMe

Signed-off-by: gvenzl <[email protected]>

* Introduce tests for ORACLE_PASSWORD and ORACLE_RANDOM_PASSWORD

Signed-off-by: gvenzl <[email protected]>

* ER #16: provide APP user variables

Signed-off-by: gvenzl <[email protected]>

* Add Ora pwd, random pwd and app user/pwd tests

Signed-off-by: gvenzl <[email protected]>

* Remove workspace manager

Signed-off-by: gvenzl <[email protected]>

* Remove OLAP

Signed-off-by: gvenzl <[email protected]>

* Update package dependencies removal

Signed-off-by: gvenzl <[email protected]>

* Make removal messages consistent

Signed-off-by: gvenzl <[email protected]>

* Fix Java Packages removal

Signed-off-by: gvenzl <[email protected]>

* ER #22: provide GitHub Actions snippet

Signed-off-by: gvenzl <[email protected]>

* Remove Java Package leftovers

Signed-off-by: gvenzl <[email protected]>

* Do not remove SLAX, used for PL/SQL

Signed-off-by: gvenzl <[email protected]>

* Remove Oracle Text, produce SLIM image

Signed-off-by: gvenzl <[email protected]>

* Update dep removal

Signed-off-by: gvenzl <[email protected]>

* Add 18c slim tests

Signed-off-by: gvenzl <[email protected]>

* Do not remove LDAP folder

Signed-off-by: gvenzl <[email protected]>

* Update test descriptions

Signed-off-by: gvenzl <[email protected]>

* SQLPlus: fail on error

Signed-off-by: gvenzl <[email protected]>

* Remove OJVMSYS leftover

Signed-off-by: gvenzl <[email protected]>

* ER #23: Support ORACLE_DATABASE

Signed-off-by: gvenzl <[email protected]>

* Add checkpoint after UNDO switch

Signed-off-by: gvenzl <[email protected]>

* Remove GPX, standalone, can be downloaded

Signed-off-by: gvenzl <[email protected]>

* Update container test run script

Signed-off-by: gvenzl <[email protected]>

* Update ReadMe for OARCLE_DATABASE 18c only

Signed-off-by: gvenzl <[email protected]>

* Update ReadMe with SLIM image

Signed-off-by: gvenzl <[email protected]>

* Add slim images to upload scripts

Signed-off-by: gvenzl <[email protected]>

* Remove Spatial

Signed-off-by: gvenzl <[email protected]>

* Remove Oracle R

Signed-off-by: gvenzl <[email protected]>

* Remove Cluster Ready Services (crs)

Signed-off-by: gvenzl <[email protected]>

* Remove Clsuter Verification Utility

Signed-off-by: gvenzl <[email protected]>

* Remove deinstall directory

Signed-off-by: gvenzl <[email protected]>

* Remove Oracle Database Provider for Distributed Relational Database Architecture (DRDA)

Signed-off-by: gvenzl <[email protected]>

* Remove install directory

Signed-off-by: gvenzl <[email protected]>

* Update ReadMe

Signed-off-by: gvenzl <[email protected]>

* Remove 'ord' and 'ordim' directories

Signed-off-by: gvenzl <[email protected]>

* Remove Universal Installer

Signed-off-by: gvenzl <[email protected]>

* Remove additional components

Signed-off-by: gvenzl <[email protected]>

* update option flag for build script

Signed-off-by: gvenzl <[email protected]>

* Fix typo in sqlnet.ora

Signed-off-by: gvenzl <[email protected]>

* disable netca

Signed-off-by: gvenzl <[email protected]>

* Register new PDB with Listener

Signed-off-by: gvenzl <[email protected]>

* set shared servers to 0

Signed-off-by: gvenzl <[email protected]>

* Fix cleanup for non-localhost bulid containers

Signed-off-by: gvenzl <[email protected]>

* Remove unnecessary bianries and libraries

Signed-off-by: gvenzl <[email protected]>

* Doc: Remove unnecessary bianries and libraries

Signed-off-by: gvenzl <[email protected]>

* Add backup for old images

Signed-off-by: gvenzl <[email protected]>

* use fully qualified image urls

Signed-off-by: gvenzl <[email protected]>

* invoke backup of old images by default

Signed-off-by: gvenzl <[email protected]>

* Add users to ReadMe

Signed-off-by: gvenzl <[email protected]>

* List RPM package removal alphabetically

Signed-off-by: gvenzl <[email protected]>

* List RPM package removal alphabetically

Signed-off-by: gvenzl <[email protected]>

* Gracefully stop listener (now that listener is started manually)

Signed-off-by: gvenzl <[email protected]>

* Fix typo in RPM package removal

Signed-off-by: gvenzl <[email protected]>

* Introducing 21c-full

Signed-off-by: gvenzl <[email protected]>

* Fixing minor Doc bug

Signed-off-by: gvenzl <[email protected]>

* Add image users

Signed-off-by: gvenzl <[email protected]>

* Add 21c supported tags

Signed-off-by: gvenzl <[email protected]>

* Explain persistent containers

Signed-off-by: gvenzl <[email protected]>

* Update 18c to '18c and onwards'

Signed-off-by: gvenzl <[email protected]>

* Add cleanup to 21c images

Signed-off-by: gvenzl <[email protected]>

* Add jOOQ as image user

Signed-off-by: gvenzl <[email protected]>

* Introducing 21c regular

Signed-off-by: gvenzl <[email protected]>

* Fix static ora* location scripts

Signed-off-by: gvenzl <[email protected]>

* Add 21c images for upload

Signed-off-by: gvenzl <[email protected]>

* Update Readme with 21c tags

Signed-off-by: gvenzl <[email protected]>

* Add artifactory upload

Signed-off-by: gvenzl <[email protected]>

* Adding Container Example Start/Creation Script

* Incorporated feedback and fixes from pull request in example script

* Fix for #43

Signed-off-by: gvenzl <[email protected]>

* Remove Oracle Memory Speed (OMS) PMEM binaries

Signed-off-by: gvenzl <[email protected]>

* Remove MLE

Signed-off-by: gvenzl <[email protected]>

* Added PWgen check

* Clean lastlog

Signed-off-by: gvenzl <[email protected]>

* Add 21c backups

Signed-off-by: gvenzl <[email protected]>

* Fix typo for 21 tests

Signed-off-by: gvenzl <[email protected]>

* Fix for #50, set exec permissions for shell scripts

Signed-off-by: gvenzl <[email protected]>

* Add utPLSQL as users

Signed-off-by: gvenzl <[email protected]>

* Better GitHub Actions documentation as per #45

Signed-off-by: gvenzl <[email protected]>

* Document Upscheme user (#56)

Signed-off-by: gvenzl <[email protected]>

* Update RPM package uninstall for new OL image

Signed-off-by: gvenzl <[email protected]>

* Introducing 21c-slim

Signed-off-by: gvenzl <[email protected]>

* Remove ore.so in 18c

Signed-off-by: gvenzl <[email protected]>

* Move REDO resize to other resize operations to avoid 'checkpoint incomplete' during setup

Signed-off-by: gvenzl <[email protected]>

* Resize REDO logs at end to avoid 'checkpoint incomplete' during setup

Signed-off-by: gvenzl <[email protected]>

* Add Sqitch to users as per #46

Signed-off-by: gvenzl <[email protected]>

* 21-slim GA ready

Signed-off-by: gvenzl <[email protected]>

* Put Docker.io login as first step

Signed-off-by: gvenzl <[email protected]>

* Remove Examples folder from main ReadMe

Signed-off-by: gvenzl <[email protected]>

* Assign variable values before input check

Signed-off-by: gvenzl <[email protected]>

* Fix example script 'pwgen' check

Signed-off-by: gvenzl <[email protected]>

* Introduce fix for #64 (Increase SGA_TARGET on high CPU count)

Signed-off-by: gvenzl <[email protected]>

* Remove Replay Upgrade feature

Signed-off-by: gvenzl <[email protected]>

* Clean up METASTYLESHEET LOBs

Signed-off-by: gvenzl <[email protected]>

* Rebuild pdbsync indexes

Signed-off-by: gvenzl <[email protected]>

* Clean up fed blocks

Signed-off-by: gvenzl <[email protected]>

* Shrink CDB SYSTEM tablespace datafile

Signed-off-by: gvenzl <[email protected]>

* List Ruby packages users (#66)

Signed-off-by: gvenzl <[email protected]>

* Shrink 21c CDB TEMP datafile

Signed-off-by: gvenzl <[email protected]>

* Shrink 18c TEMP datafile

Signed-off-by: gvenzl <[email protected]>

* Remove OLAP library

Signed-off-by: gvenzl <[email protected]>

* Do not increase SGA_TARGET for 11g (fixes #71) (#72)

Oracle Database 11g XE is restricted to use no more than 1 GB of memory. The
fix for #64 sets the memory to 1.5 GB, so that the database fails to start with
the error:

ORA-47500: XE edition memory parameter invalid or not specified

* Update note for #72

Signed-off-by: gvenzl <[email protected]>

* ER #60: introduce container minimum memory check

Signed-off-by: gvenzl <[email protected]>

* ER #61: introduce container minimum memory check

Signed-off-by: gvenzl <[email protected]>

* Update utPLSQL references as per #77

Signed-off-by: gvenzl <[email protected]>

* Provide TDE setup script example as per #70

Signed-off-by: gvenzl <[email protected]>

* More solid fix for #64

Signed-off-by: gvenzl <[email protected]>

* Enhance documentation for secrets (#69)

Signed-off-by: gvenzl <[email protected]>

* Document HitHub Action container label usage (#81)

Signed-off-by: gvenzl <[email protected]>

* Fix doc bug for APP_USER

Signed-off-by: gvenzl <[email protected]>

* Add CREATE SYNONYM permission to APP_USER. (#94)

* Externalise script createAppUser (#103)

Closes #102

* Modularize app user creation

Signed-off-by: gvenzl <[email protected]>

* Update image users

Signed-off-by: gvenzl <[email protected]>

* Fix typo

Signed-off-by: gvenzl <[email protected]>

* Fix #104

Signed-off-by: gvenzl <[email protected]>

* Inlcude pam package for OS based auth (#57)

Signed-off-by: gvenzl <[email protected]>

* Generic fix for #64

Signed-off-by: gvenzl <[email protected]>

* Include 21-slim in backups

Signed-off-by: gvenzl <[email protected]>

* Pre-create container init folders (#108)

Signed-off-by: gvenzl <[email protected]>

* Enable Diag and Tuning packs (and EM Express) #112

Signed-off-by: gvenzl <[email protected]>

* Disable audit log

Signed-off-by: gvenzl <[email protected]>

* Update ImageDetails.md

Signed-off-by: gvenzl <[email protected]>

* Fix for #109

Signed-off-by: gvenzl <[email protected]>

* Reorder references

Signed-off-by: gvenzl <[email protected]>

* Update references

Signed-off-by: gvenzl <[email protected]>

* Document Apple M chips (#63)

Signed-off-by: gvenzl <[email protected]>

* Implemented --nowait (#119)

Signed-off-by: gvenzl <[email protected]>

* Fix missing link for colima install

Signed-off-by: gvenzl <[email protected]>

* Introduce faststart images ER #36

Signed-off-by: gvenzl <[email protected]>

* Introduce faststart images (ER #36)

Signed-off-by: gvenzl <[email protected]>

* Provide images on GHCR (ER #131)

Signed-off-by: gvenzl <[email protected]>

* fix #144

Signed-off-by: gvenzl <[email protected]>

* Include -faststart images in backup

Signed-off-by: gvenzl <[email protected]>

* Document recursive init scripts, make output a bit more readable

Signed-off-by: gvenzl <[email protected]>

* Fix #142, use default memory for BUILDKIT

Signed-off-by: gvenzl <[email protected]>

* #157: Futher specify faststart image use not being for persistency

Signed-off-by: gvenzl <[email protected]>

* Fix typo #168

Signed-off-by: gvenzl <[email protected]>

* #171 Allow mounting external volume for oradata subfolders (#172)

Signed-off-by: Loïc LEFEVRE <[email protected]>

* Fix #171: do not delete directory structure

Signed-off-by: gvenzl <[email protected]>

* Make init script against XE more prominent in README

Signed-off-by: gvenzl <[email protected]>

* Add 'find' utility for 11.2 build

Signed-off-by: gvenzl <[email protected]>

* Add details for enabling In-Memory Columnar processing on XE #188 (#189)

* 21c multiple layers

Signed-off-by: gvenzl <[email protected]>

* multiple layers faststart

Signed-off-by: gvenzl <[email protected]>

* Multiple layers 18c

Signed-off-by: gvenzl <[email protected]>

* Update faststart for 11g

Signed-off-by: gvenzl <[email protected]>

* harmonize Dockerfiles

Signed-off-by: gvenzl <[email protected]>

* multi-layer 11g

Signed-off-by: gvenzl <[email protected]>

* Use user- / group name for chown

Signed-off-by: gvenzl <[email protected]>

* Document -x buildContainerImage.sh parameter

Signed-off-by: gvenzl <[email protected]>

* use env vars instead of literal

Signed-off-by: gvenzl <[email protected]>

* Remove unnecessary timezone files

Signed-off-by: gvenzl <[email protected]>

* Remove unecessary binaries

Signed-off-by: gvenzl <[email protected]>

* Update ImageDetails with timezone files

Signed-off-by: gvenzl <[email protected]>

* Cleanup comments

Signed-off-by: gvenzl <[email protected]>

* Remove old timezone info 18c

Signed-off-by: gvenzl <[email protected]>

* Further remove binaries in 18c

Signed-off-by: gvenzl <[email protected]>

* Use 7z for data files uncompress

Signed-off-by: gvenzl <[email protected]>

* Don't shasum faststart image build

Signed-off-by: gvenzl <[email protected]>

* Run ORACLE_DATABASE case insensitive tests

Signed-off-by: gvenzl <[email protected]>

* Use docker.io login

Signed-off-by: gvenzl <[email protected]>

* Update Quarkus Reference

Signed-off-by: gvenzl <[email protected]>

* Migrate Benthos

Signed-off-by: gvenzl <[email protected]>

* Migrate Hibernate Reactive

Signed-off-by: gvenzl <[email protected]>

* Healthcheck PDB status for 18c+

Signed-off-by: gvenzl <[email protected]>

* Update resetPassword param documentation

Signed-off-by: gvenzl <[email protected]>

* Update Spring Data reference

Signed-off-by: gvenzl <[email protected]>

* Update .bash_profile variables

Signed-off-by: gvenzl <[email protected]>

* Backport healthcheck from Free images (#215)

Signed-off-by: gvenzl <[email protected]>

* Use XEPDB1 as default

Signed-off-by: gvenzl <[email protected]>

* Update jOOQ reference and 'sqlplus'

Signed-off-by: gvenzl <[email protected]>

* Fix #202, /oradata permissions

Signed-off-by: gvenzl <[email protected]>

* Provide user warning of old images

Signed-off-by: gvenzl <[email protected]>

* Update Ruby on Rails ActiveRecord user

Signed-off-by: gvenzl <[email protected]>

* Provide FREE,FREEPDB1 service names (ER #238)

Signed-off-by: Gerald Venzl <[email protected]>

* Update readme

Signed-off-by: Gerald Venzl <[email protected]>

* Update labels

Signed-off-by: Gerald Venzl <[email protected]>

* Fix for #57

Signed-off-by: Gerald Venzl <[email protected]>

* Upgrade 7zip

Signed-off-by: Gerald Venzl <[email protected]>

* Update ReadMe and docker startup script

Signed-off-by: Gerald Venzl <[email protected]>

---------

Signed-off-by: gvenzl <[email protected]>
Signed-off-by: Loïc LEFEVRE <[email protected]>
Signed-off-by: Gerald Venzl <[email protected]>
Co-authored-by: Daniel Haanpaa [Lab0] <[email protected]>
Co-authored-by: cedric-v3 <[email protected]>
Co-authored-by: Simon Potter <[email protected]>
Co-authored-by: Neil Crow <[email protected]>
Co-authored-by: Loïc LEFEVRE <[email protected]>
Co-authored-by: Loïc LEFEVRE <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants