Skip to content

Commit

Permalink
openssl openssh compat.
Browse files Browse the repository at this point in the history
  • Loading branch information
ab77 committed Dec 3, 2023
1 parent dda4970 commit 95a8be3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion unzoner/.balena/balena.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ build-variables:
# https://en.wikipedia.org/wiki/Bird_Internet_routing_daemon
- BUILD_BIRD=0
# https://github.com/openssl/openssl
- BUILD_OPENSSL_VERSION=3.2.0
# Setting up openssh-server (1:8.9p1-3ubuntu0.4) ...
# OpenSSL version mismatch. Built against 30000020, you have 30200000
- BUILD_OPENSSL_VERSION=3.0.12
- BUILD_OPENSSL=1
# https://gcc.gnu.org/onlinedocs/gcc/AArch64-Options.html
- AARCH64_OPTIMISE_FLAGS=-O3 -mtune=cortex-a72 -march=armv8-a
Expand Down
3 changes: 2 additions & 1 deletion unzoner/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ RUN [ -f /usr/local/sbin/openvpn ] || install_packages openvpn

RUN [ -f /usr/local/sbin/sniproxy ] || install_packages sniproxy

RUN [ -f /usr/local/ssl/bin/openssl ] && (rm -f /usr/local/bin/openssl && ln -s /usr/local/ssl/bin/openssl /usr/local/bin/openssl) \
RUN [ -f /usr/local/ssl/bin/openssl ] \
&& (rm -f /usr/local/bin/openssl && ln -s /usr/local/ssl/bin/openssl /usr/local/bin/openssl) \
|| install_packages openssl

RUN which bird || install_packages bird
Expand Down

0 comments on commit 95a8be3

Please sign in to comment.