Skip to content

Commit

Permalink
fix: skip libaio1 in oracle install script
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Peschke <[email protected]>
  • Loading branch information
lukapeschke committed Dec 19, 2024
1 parent 45be3e4 commit 54e3664
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Changed

- MSSQL and Azure MSQQL connectors now use the ODBC 18 driver
- The Oracle connector install script no longer installs `libaio1`

## [7.4.1] 2024-12-12

Expand Down
4 changes: 2 additions & 2 deletions toucan_connectors/install_scripts/oracle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ if [[ -e ~/oracle-installed ]]; then
fi

apt-get update
apt-get install -fyq libaio1 curl wget unzip
apt-get install -fyq curl unzip
mkdir -p /opt/oracle
wget 'https://public-package.toucantoco.com/connectors_sources/oracle/oracle_client_lib/instantclient-basiclite-linux.x64-12.2.0.1.0.zip' -O '/tmp/oracle_client_lib.zip'
curl -sSL 'https://public-package.toucantoco.com/connectors_sources/oracle/oracle_client_lib/instantclient-basiclite-linux.x64-12.2.0.1.0.zip' -o '/tmp/oracle_client_lib.zip'
unzip /tmp/oracle_client_lib.zip -d /opt/oracle
sh -c "echo /opt/oracle/instantclient_12_2 > /etc/ld.so.conf.d/oracle-instantclient.conf"
ldconfig
Expand Down

0 comments on commit 54e3664

Please sign in to comment.