From 0f76cc631381a2f02fa656707fb8c5c03dce2049 Mon Sep 17 00:00:00 2001 From: pablomendezroyo <41727368+pablomendezroyo@users.noreply.github.com> Date: Thu, 18 Apr 2024 14:58:06 +0100 Subject: [PATCH] Add comments to version definition (#619) --- .dappnode_profile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.dappnode_profile b/.dappnode_profile index 96ce774..2cbf5a4 100755 --- a/.dappnode_profile +++ b/.dappnode_profile @@ -1,5 +1,12 @@ #!/bin/bash +# Script sourced by installer script `dappnode_install.sh` +# It is sourced to grab and download the core packages content from github and/or IPFS +# - Github: i.e `BIND_VERSION=0.2.11` +# - IPFS: i.e `DAPPMANAGER_VERSION=/ipfs/QmRe6V5vZYFv68WeX3vh2N9hVEeDnp8f7rmxP47xjGNrNF:0.2.71` This string will be splitted by the semicolon `:` +# - `/ipfs/QmRe6...` -> indicates the ipfs hash used to download the content +# - `0.2.71` -> indicates the version. It must be the one uploaded to such IPFS hash + export BIND_VERSION="${BIND_VERSION:-0.2.11}" export IPFS_VERSION="${IPFS_VERSION:-0.2.22}" export VPN_VERSION="${VPN_VERSION:-0.2.10}"