Skip to content

Commit

Permalink
Address regressions introduced in gce test net setup with image updat…
Browse files Browse the repository at this point in the history
…e to latest ubuntu (#3926)

* make the nodes start correctly as far as gce.sh is concerned

* remove instead of comment out openssl1.1

* rename script to match its actual purpose

---------

Co-authored-by: Alex Pyattaev <[email protected]>
  • Loading branch information
alexpyattaev and Alex Pyattaev authored Dec 5, 2024
1 parent 3e9af14 commit e28c4df
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
5 changes: 3 additions & 2 deletions net/gce.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ prefix=testnet-dev-${USER//[^A-Za-z0-9]/}
additionalValidatorCount=2
clientNodeCount=0
blockstreamer=false
validatorBootDiskSizeInGb=500
validatorBootDiskSizeInGb=100
clientBootDiskSizeInGb=75
validatorAdditionalDiskSizeInGb=
externalNodes=false
Expand Down Expand Up @@ -802,11 +802,12 @@ $(
solana-user-authorized_keys.sh \
add-testnet-solana-user-authorized_keys.sh \
install-ag.sh \
install-at.sh \
install-certbot.sh \
install-earlyoom.sh \
install-iftop.sh \
install-jq.sh \
install-libssl-compatability.sh \
install-libssl.sh \
install-rsync.sh \
install-perf.sh \
localtime.sh \
Expand Down
9 changes: 9 additions & 0 deletions net/scripts/install-at.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env bash
#
set -ex

[[ $(uname) = Linux ]] || exit 1
[[ $USER = root ]] || exit 1

apt-get update
apt-get --assume-yes install at
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,3 @@ set -ex
# Install libssl-dev to be compatible with binaries built on an Ubuntu machine...
apt-get update
apt-get --assume-yes install libssl-dev

# Install libssl1.1 to be compatible with binaries built in the
# solanalabs/rust docker image
#
# cc: https://github.com/solana-labs/solana/issues/1090
apt-get --assume-yes install libssl1.1

0 comments on commit e28c4df

Please sign in to comment.