Skip to content

Commit ea72028

Browse files
authored
fix(hbase): link to phoenix server jar (#811)
* fix(hbase): link to phoenix server jar * make ln fail if destination is missing
1 parent 5688183 commit ea72028

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ All notable changes to this project will be documented in this file.
1212

1313
- opa: Remove version 0.61.0 ([#797]).
1414

15+
### Fixed
16+
17+
- hbase: link to phoenix server jar. ([#811])
18+
1519
[#797]: https://github.com/stackabletech/docker-images/pull/797
20+
[#811]: https://github.com/stackabletech/docker-images/pull/811
1621

1722
## [24.7.0] - 2024-07-24
1823

hbase/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,9 +323,9 @@ microdnf clean all
323323
rpm -qa --qf "%{NAME}-%{VERSION}-%{RELEASE}\n" | sort > /stackable/package_manifest.txt
324324
rm -rf /var/cache/yum
325325

326-
ln -s /stackable/hbase-${PRODUCT} /stackable/hbase
327-
ln -s /stackable/hbase-operator-tools-${HBASE_OPERATOR_TOOLS} /stackable/hbase-operator-tools
328-
ln -s "/stackable/phoenix/phoenix-server-hbase-${HBASE_PROFILE}-${PHOENIX}.jar" "/stackable/hbase/lib/phoenix-server-hbase-${HBASE_PROFILE}-${PHOENIX}.jar"
326+
ln --symbolic --logical --verbose "/stackable/hbase-${PRODUCT}" /stackable/hbase
327+
ln --symbolic --logical --verbose "/stackable/hbase-operator-tools-${HBASE_OPERATOR_TOOLS}" /stackable/hbase-operator-tools
328+
ln --symbolic --logical --verbose "/stackable/phoenix/phoenix-server-hbase-${HBASE_PROFILE}.jar" "/stackable/hbase/lib/phoenix-server-hbase-${HBASE_PROFILE}.jar"
329329
EOF
330330

331331
USER stackable

0 commit comments

Comments
 (0)