-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'proposessl' into 'main'
Improve the bless version replica proposal format to include instructions on OS verification. See merge request dfinity-lab/core/release!565
- Loading branch information
Showing
2 changed files
with
49 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,9 @@ Features include: | |
cargo install --git ssh://[email protected]/dfinity-lab/core/release release_cli | ||
``` | ||
|
||
Make sure you have `libssl.so.1.1` on your system (Ubuntu 22.04 and later | ||
will not carry it). See below under *Troubleshooting* to get that going. | ||
|
||
## Usage | ||
|
||
```shell | ||
|
@@ -39,6 +42,11 @@ Once downloaded and extracted, you can install it by running | |
make | ||
make test | ||
sudo make install | ||
# The following adds the libraries to your system | ||
# path, where Cargo will look for them. | ||
sudo ln -s /usr/local/lib/libssl.so.1.1 /usr/lib/libssl.so.1.1 | ||
sudo ln -s /usr/local/lib/libcrypto.so.1.1 /usr/lib/libcrypto.so.1.1 | ||
# If you would rather not modify anything under /usr, | ||
# you can instead set the LD_LIBRARY_PATH= variable | ||
# to /usr/local in your ~/.bashrc. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters