From 4485dc8ad7578bce08353291be69047ae47bc96d Mon Sep 17 00:00:00 2001 From: "dlt.green" Date: Mon, 26 Feb 2024 22:50:24 +0100 Subject: [PATCH 01/17] wasp: update 1.0.3-alpha.3 --- node-installer.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/node-installer.sh b/node-installer.sh index 7ebc8a1a..e3bae4d8 100644 --- a/node-installer.sh +++ b/node-installer.sh @@ -14,11 +14,11 @@ VAR_CONF_RESET=0 VAR_IOTA_HORNET_VERSION='2.0.1' VAR_IOTA_HORNET_UPDATE=1 -VAR_IOTA_WASP_VERSION='1.0.3-alpha.2' +VAR_IOTA_WASP_VERSION='1.0.3-alpha.3' VAR_IOTA_WASP_UPDATE=1 VAR_IOTA_WASP_DASHBOARD_VERSION='0.1.9' -VAR_IOTA_WASP_CLI_VERSION='1.0.3-alpha.2' +VAR_IOTA_WASP_CLI_VERSION='1.0.3-alpha.3' VAR_IOTA_INX_INDEXER_VERSION='1.0' VAR_IOTA_INX_MQTT_VERSION='1.0' @@ -30,11 +30,11 @@ VAR_IOTA_INX_DASHBOARD_VERSION='1.0' VAR_SHIMMER_HORNET_VERSION='2.0.0-rc.8' VAR_SHIMMER_HORNET_UPDATE=1 -VAR_SHIMMER_WASP_VERSION='1.0.3-alpha.2' +VAR_SHIMMER_WASP_VERSION='1.0.3-alpha.3' VAR_SHIMMER_WASP_UPDATE=1 VAR_SHIMMER_WASP_DASHBOARD_VERSION='0.1.9' -VAR_SHIMMER_WASP_CLI_VERSION='1.0.3-alpha.2' +VAR_SHIMMER_WASP_CLI_VERSION='1.0.3-alpha.3' VAR_SHIMMER_INX_INDEXER_VERSION='1.0-rc' VAR_SHIMMER_INX_MQTT_VERSION='1.0-rc' From 0f3f036d2141d58da22416719835c53ac832b0aa Mon Sep 17 00:00:00 2001 From: "dlt.green" Date: Mon, 26 Feb 2024 23:27:09 +0100 Subject: [PATCH 02/17] installer: reboot only when needed (maintenance) --- node-installer.sh | 40 ++++++++++++++++++++++++++-------------- 1 file changed, 26 insertions(+), 14 deletions(-) diff --git a/node-installer.sh b/node-installer.sh index e3bae4d8..21946df3 100644 --- a/node-installer.sh +++ b/node-installer.sh @@ -2420,21 +2420,33 @@ SystemMaintenance() { if [ "$opt_mode" ]; then if ! [ "$opt_reboot" ]; then opt_reboot=0; fi; fi if [ "$opt_reboot" = 1 ]; then n=1; elif [ "$opt_reboot" = 0 ]; then n=0; else read -r -p '> ' n; fi - if [ "$opt_mode" ]; then if [ "$opt_reboot" = 1 ]; then - VAR_STATUS='system: reboot' - NotifyMessage "info" "$VAR_DOMAIN" "$VAR_STATUS"; - sleep 3 - fi; fi - case $n in - 1) echo 'rebooting...'; sleep 3 - echo "$rd" - echo "System rebooted, dont't forget to reconnect and start your Nodes again," - echo "if you don't have Autostart enabled!" - echo "$xx" - sudo reboot - n='q' - ;; + 1) if [ -f /var/run/reboot-required ]; then + echo 'rebooting...'; sleep 3 + echo "$rd" + echo "System rebooted, dont't forget to reconnect and start your Nodes again," + echo "if you don't have Autostart enabled!" + echo "$xx" + if [ "$opt_mode" ]; then + VAR_STATUS='system: reboot' + NotifyMessage "info" "$VAR_DOMAIN" "$VAR_STATUS"; + sleep 3 + fi + sudo reboot + n='q' + else + echo 'rebooting...'; sleep 3 + echo "$gn" + echo "System reboot not needed, your nodes will be started again!" + echo "$xx" + if [ "$opt_mode" ]; then + VAR_STATUS='system: reboot not needed' + NotifyMessage "info" "$VAR_DOMAIN" "$VAR_STATUS"; + sleep 3 + fi + n='s' + if ! [ "$opt_mode" ]; then DashboardHelper; fi + fi ;; *) n='s' if ! [ "$opt_mode" ]; then DashboardHelper; fi ;; From 4f953fe93d3cf73f3815a6ecd5cb4e9c94cae18b Mon Sep 17 00:00:00 2001 From: Ktota <109756198+0xKtota@users.noreply.github.com> Date: Mon, 26 Feb 2024 23:28:20 +0100 Subject: [PATCH 03/17] hornet: add autopeering switch in README.md --- shimmer-hornet/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shimmer-hornet/README.md b/shimmer-hornet/README.md index f7124bc1..7bb624e1 100644 --- a/shimmer-hornet/README.md +++ b/shimmer-hornet/README.md @@ -34,6 +34,7 @@ HORNET_HOST=node.your-domain.com # HORNET_PRUNING_TARGET_SIZE=64GB # HORNET_PRUNING_MAX_MILESTONES_TO_KEEP=60480 # HORNET_POW_ENABLED=false +# HORNET_AUTOPEERING_ENABLED=true # HORNET_STATIC_NEIGHBORS=my-alias:/ip4/127.0.0.1/tcp/15600/p2p/12D3KooWCKWcTWevORKa2KEBputEGASvEBuDfRDSbe8t1DWugUmL # DASHBOARD_USERNAME=admin @@ -64,6 +65,7 @@ INX_DASHBOARD_VERSION=1.0.0-beta.5 | HORNET_PRUNING_TARGET_SIZE | | 64GB | Target size of database | | HORNET_PRUNING_MAX_MILESTONES_TO_KEEP | | 60480 | Max umber of milestones to keep in database. Milestone pruning is disabled by default. It's activated if this parameter is set. | | HORNET_POW_ENABLED | | false | Whether the node does PoW if messages are received via API | +| HORNET_AUTOPEERING_ENABLED | | true | Whether the node should automatically connect to other nodes (see [docs](https://wiki.iota.org/hornet/references/peering#autopeering) for further infos) | | HORNET_STATIC_NEIGHBORS | | | Comma separated list of static neighbors. Format example: `my-alias:/ip4/127.0.0.1/tcp/15600/p2p/12D3KooWCKWcTWevORKa2KEBputEGASvEBuDfRDSbe8t1DWugUmL` (see [docs](https://wiki.iota.org/hornet/references/peering/) for further infos) | | DASHBOARD_USERNAME | | admin | Username to access dashboard | | DASHBOARD_PASSWORD | x | | Password hash (can be generated with `docker compose run hornet tool pwd-hash` or non-interactively with `docker compose run hornet tool pwd-hash --json --password `) | From 338ed10d769f4cd914481023c8909ff14a257d0b Mon Sep 17 00:00:00 2001 From: "dlt.green" Date: Mon, 26 Feb 2024 23:28:50 +0100 Subject: [PATCH 04/17] readme: update info system reboot --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1388bdb3..64eb2e8a 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ Each flag represents a different configuration option: - `time`: Sets the delay in seconds before executing an action (0-20 seconds, default: 10). - `reboot`: - `0`: No reboot after operations. - - `1`: Executes a system reboot with automatic node shutdown prior to it (default: 0). + - `1`: Executes a system reboot (only if needed) with automatic node shutdown prior to it (default: 0). - `checks`: - `0`: Disables checks (not recommended). - `1`: Enforces UFW Firewall and Autostart setup (default: 1). From 43089f305abc6ec0a37daf00ed9740763a4b487f Mon Sep 17 00:00:00 2001 From: Ktota <109756198+0xKtota@users.noreply.github.com> Date: Mon, 26 Feb 2024 23:30:30 +0100 Subject: [PATCH 05/17] hornet: add autopeering switch in README.md --- iota-hornet/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iota-hornet/README.md b/iota-hornet/README.md index 56f84c30..49428345 100644 --- a/iota-hornet/README.md +++ b/iota-hornet/README.md @@ -34,6 +34,7 @@ HORNET_HOST=node.your-domain.com # HORNET_PRUNING_TARGET_SIZE=64GB # HORNET_PRUNING_MAX_MILESTONES_TO_KEEP=60480 # HORNET_POW_ENABLED=false +# HORNET_AUTOPEERING_ENABLED=true # HORNET_STATIC_NEIGHBORS=my-alias:/ip4/127.0.0.1/tcp/15600/p2p/12D3KooWCKWcTWevORKa2KEBputEGASvEBuDfRDSbe8t1DWugUmL # DASHBOARD_USERNAME=admin @@ -64,6 +65,7 @@ INX_DASHBOARD_VERSION=1.0.0-beta.5 | HORNET_PRUNING_TARGET_SIZE | | 64GB | Target size of database | | HORNET_PRUNING_MAX_MILESTONES_TO_KEEP | | 60480 | Max umber of milestones to keep in database. Milestone pruning is disabled by default. It's activated if this parameter is set. | | HORNET_POW_ENABLED | | false | Whether the node does PoW if messages are received via API | +| HORNET_AUTOPEERING_ENABLED | | true | Whether the node should automatically connect to other nodes (see [docs](https://wiki.iota.org/hornet/references/peering#autopeering) for further infos) | | HORNET_STATIC_NEIGHBORS | | | Comma separated list of static neighbors. Format example: `my-alias:/ip4/127.0.0.1/tcp/15600/p2p/12D3KooWCKWcTWevORKa2KEBputEGASvEBuDfRDSbe8t1DWugUmL` (see [docs](https://wiki.iota.org/hornet/references/peering/) for further infos) | | DASHBOARD_USERNAME | | admin | Username to access dashboard | | DASHBOARD_PASSWORD | x | | Password hash (can be generated with `docker compose run hornet tool pwd-hash` or non-interactively with `docker compose run hornet tool pwd-hash --json --password `) | From 6563a3c4035e693d869a139b2317dcc6e1b3f264 Mon Sep 17 00:00:00 2001 From: "dlt.green" Date: Mon, 26 Feb 2024 23:45:29 +0100 Subject: [PATCH 06/17] +installer: reboot only when needed (maintenance) --- node-installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node-installer.sh b/node-installer.sh index 21946df3..eed8501a 100644 --- a/node-installer.sh +++ b/node-installer.sh @@ -2430,8 +2430,8 @@ SystemMaintenance() { if [ "$opt_mode" ]; then VAR_STATUS='system: reboot' NotifyMessage "info" "$VAR_DOMAIN" "$VAR_STATUS"; - sleep 3 fi + sleep 3 sudo reboot n='q' else @@ -2442,8 +2442,8 @@ SystemMaintenance() { if [ "$opt_mode" ]; then VAR_STATUS='system: reboot not needed' NotifyMessage "info" "$VAR_DOMAIN" "$VAR_STATUS"; - sleep 3 fi + sleep 3 n='s' if ! [ "$opt_mode" ]; then DashboardHelper; fi fi ;; From a0f8828496dd919756d38fa2e8713f990ba3afb0 Mon Sep 17 00:00:00 2001 From: "dlt.green" Date: Tue, 27 Feb 2024 06:33:05 +0100 Subject: [PATCH 07/17] installer: reboot only when necessary (maintenance) --- node-installer.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node-installer.sh b/node-installer.sh index eed8501a..a4a50cca 100644 --- a/node-installer.sh +++ b/node-installer.sh @@ -2406,7 +2406,7 @@ SystemMaintenance() { echo "║ DLT.GREEN AUTOMATIC NODE-INSTALLER WITH DOCKER $VAR_VRN ║" echo "║""$ca""$VAR_DOMAIN""$xx""║" echo "║ ║" - echo "║ 1. System Reboot (recommended) ║" + echo "║ 1. System Reboot (if necessary, recommended) ║" echo "║ X. Maintenance Menu ║" echo "║ ║" echo "╚═════════════════════════════════════════════════════════════════════════════╝" @@ -2437,10 +2437,10 @@ SystemMaintenance() { else echo 'rebooting...'; sleep 3 echo "$gn" - echo "System reboot not needed, your nodes will be started again!" + echo "System reboot not necessary, your nodes will be started again!" echo "$xx" if [ "$opt_mode" ]; then - VAR_STATUS='system: reboot not needed' + VAR_STATUS='system: reboot not necessary' NotifyMessage "info" "$VAR_DOMAIN" "$VAR_STATUS"; fi sleep 3 From 6a2d7593afa4af15256acf0b1a44707a15242926 Mon Sep 17 00:00:00 2001 From: "dlt.green" Date: Tue, 27 Feb 2024 06:35:09 +0100 Subject: [PATCH 08/17] +readme: update info system reboot --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 64eb2e8a..d6e6ae6b 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ Each flag represents a different configuration option: - `time`: Sets the delay in seconds before executing an action (0-20 seconds, default: 10). - `reboot`: - `0`: No reboot after operations. - - `1`: Executes a system reboot (only if needed) with automatic node shutdown prior to it (default: 0). + - `1`: Executes a system reboot (only if necessary) with automatic node shutdown prior to it (default: 0). - `checks`: - `0`: Disables checks (not recommended). - `1`: Enforces UFW Firewall and Autostart setup (default: 1). From f5e2c0d7a85f118a4e6dad804520299a06bcd50c Mon Sep 17 00:00:00 2001 From: "dlt.green" Date: Tue, 27 Feb 2024 07:03:12 +0100 Subject: [PATCH 09/17] installer: rem old not used checksum (new one is direct in the release) --- checksum.txt | 1 - 1 file changed, 1 deletion(-) delete mode 100644 checksum.txt diff --git a/checksum.txt b/checksum.txt deleted file mode 100644 index 7fd9f4b5..00000000 --- a/checksum.txt +++ /dev/null @@ -1 +0,0 @@ -768a575cd279b18428a118edc5f69739f274791f79cd1dde2dcdec8d6ec772e9 \ No newline at end of file From 910a0695ff7af52c29f0615202b7ceaff1a16fae Mon Sep 17 00:00:00 2001 From: "dlt.green" Date: Tue, 27 Feb 2024 17:22:40 +0100 Subject: [PATCH 10/17] Revert "+readme: update info system reboot" This reverts commit 6a2d7593afa4af15256acf0b1a44707a15242926. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d6e6ae6b..64eb2e8a 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ Each flag represents a different configuration option: - `time`: Sets the delay in seconds before executing an action (0-20 seconds, default: 10). - `reboot`: - `0`: No reboot after operations. - - `1`: Executes a system reboot (only if necessary) with automatic node shutdown prior to it (default: 0). + - `1`: Executes a system reboot (only if needed) with automatic node shutdown prior to it (default: 0). - `checks`: - `0`: Disables checks (not recommended). - `1`: Enforces UFW Firewall and Autostart setup (default: 1). From aa64c218791de27666bf2b112d40046cf4b318d4 Mon Sep 17 00:00:00 2001 From: "dlt.green" Date: Tue, 27 Feb 2024 17:22:46 +0100 Subject: [PATCH 11/17] Revert "installer: reboot only when necessary (maintenance)" This reverts commit a0f8828496dd919756d38fa2e8713f990ba3afb0. --- node-installer.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node-installer.sh b/node-installer.sh index aaf95cb6..a879bac5 100644 --- a/node-installer.sh +++ b/node-installer.sh @@ -2406,7 +2406,7 @@ SystemMaintenance() { echo "║ DLT.GREEN AUTOMATIC NODE-INSTALLER WITH DOCKER $VAR_VRN ║" echo "║""$ca""$VAR_DOMAIN""$xx""║" echo "║ ║" - echo "║ 1. System Reboot (if necessary, recommended) ║" + echo "║ 1. System Reboot (recommended) ║" echo "║ X. Maintenance Menu ║" echo "║ ║" echo "╚═════════════════════════════════════════════════════════════════════════════╝" @@ -2437,10 +2437,10 @@ SystemMaintenance() { else echo 'rebooting...'; sleep 3 echo "$gn" - echo "System reboot not necessary, your nodes will be started again!" + echo "System reboot not needed, your nodes will be started again!" echo "$xx" if [ "$opt_mode" ]; then - VAR_STATUS='system: reboot not necessary' + VAR_STATUS='system: reboot not needed' NotifyMessage "info" "$VAR_DOMAIN" "$VAR_STATUS"; fi sleep 3 From e3f6bfc42da0199e4db0fac39a8c0e49a7083019 Mon Sep 17 00:00:00 2001 From: "dlt.green" Date: Tue, 27 Feb 2024 17:22:55 +0100 Subject: [PATCH 12/17] Revert "+installer: reboot only when needed (maintenance)" This reverts commit 6563a3c4035e693d869a139b2317dcc6e1b3f264. --- node-installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node-installer.sh b/node-installer.sh index a879bac5..82c78d50 100644 --- a/node-installer.sh +++ b/node-installer.sh @@ -2430,8 +2430,8 @@ SystemMaintenance() { if [ "$opt_mode" ]; then VAR_STATUS='system: reboot' NotifyMessage "info" "$VAR_DOMAIN" "$VAR_STATUS"; + sleep 3 fi - sleep 3 sudo reboot n='q' else @@ -2442,8 +2442,8 @@ SystemMaintenance() { if [ "$opt_mode" ]; then VAR_STATUS='system: reboot not needed' NotifyMessage "info" "$VAR_DOMAIN" "$VAR_STATUS"; + sleep 3 fi - sleep 3 n='s' if ! [ "$opt_mode" ]; then DashboardHelper; fi fi ;; From 0e21e8b511ccce7fad420942d5ecd52c910a164d Mon Sep 17 00:00:00 2001 From: "dlt.green" Date: Tue, 27 Feb 2024 17:26:55 +0100 Subject: [PATCH 13/17] Revert "readme: update info system reboot" This reverts commit 338ed10d769f4cd914481023c8909ff14a257d0b. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 64eb2e8a..1388bdb3 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ Each flag represents a different configuration option: - `time`: Sets the delay in seconds before executing an action (0-20 seconds, default: 10). - `reboot`: - `0`: No reboot after operations. - - `1`: Executes a system reboot (only if needed) with automatic node shutdown prior to it (default: 0). + - `1`: Executes a system reboot with automatic node shutdown prior to it (default: 0). - `checks`: - `0`: Disables checks (not recommended). - `1`: Enforces UFW Firewall and Autostart setup (default: 1). From 72291bc4ccbaa6fa47b9d9256b62f23e9a5b7065 Mon Sep 17 00:00:00 2001 From: "dlt.green" Date: Tue, 27 Feb 2024 17:27:02 +0100 Subject: [PATCH 14/17] Revert "installer: reboot only when needed (maintenance)" This reverts commit 0f3f036d2141d58da22416719835c53ac832b0aa. --- node-installer.sh | 40 ++++++++++++++-------------------------- 1 file changed, 14 insertions(+), 26 deletions(-) diff --git a/node-installer.sh b/node-installer.sh index 82c78d50..cf8f4aa1 100644 --- a/node-installer.sh +++ b/node-installer.sh @@ -2420,33 +2420,21 @@ SystemMaintenance() { if [ "$opt_mode" ]; then if ! [ "$opt_reboot" ]; then opt_reboot=0; fi; fi if [ "$opt_reboot" = 1 ]; then n=1; elif [ "$opt_reboot" = 0 ]; then n=0; else read -r -p '> ' n; fi + if [ "$opt_mode" ]; then if [ "$opt_reboot" = 1 ]; then + VAR_STATUS='system: reboot' + NotifyMessage "info" "$VAR_DOMAIN" "$VAR_STATUS"; + sleep 3 + fi; fi + case $n in - 1) if [ -f /var/run/reboot-required ]; then - echo 'rebooting...'; sleep 3 - echo "$rd" - echo "System rebooted, dont't forget to reconnect and start your Nodes again," - echo "if you don't have Autostart enabled!" - echo "$xx" - if [ "$opt_mode" ]; then - VAR_STATUS='system: reboot' - NotifyMessage "info" "$VAR_DOMAIN" "$VAR_STATUS"; - sleep 3 - fi - sudo reboot - n='q' - else - echo 'rebooting...'; sleep 3 - echo "$gn" - echo "System reboot not needed, your nodes will be started again!" - echo "$xx" - if [ "$opt_mode" ]; then - VAR_STATUS='system: reboot not needed' - NotifyMessage "info" "$VAR_DOMAIN" "$VAR_STATUS"; - sleep 3 - fi - n='s' - if ! [ "$opt_mode" ]; then DashboardHelper; fi - fi ;; + 1) echo 'rebooting...'; sleep 3 + echo "$rd" + echo "System rebooted, dont't forget to reconnect and start your Nodes again," + echo "if you don't have Autostart enabled!" + echo "$xx" + sudo reboot + n='q' + ;; *) n='s' if ! [ "$opt_mode" ]; then DashboardHelper; fi ;; From 3b1400833169857213ad3bd3913b750eac7898f2 Mon Sep 17 00:00:00 2001 From: "dlt.green" Date: Tue, 27 Feb 2024 19:20:53 +0100 Subject: [PATCH 15/17] installer: add setting NEEDRESTART_MODE=a --- node-installer.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/node-installer.sh b/node-installer.sh index a4a50cca..9210fa9c 100644 --- a/node-installer.sh +++ b/node-installer.sh @@ -2332,11 +2332,12 @@ SystemMaintenance() { echo "╚═════════════════════════════════════════════════════════════════════════════╝" echo "" - DEBIAN_FRONTEND=noninteractive sudo apt update - DEBIAN_FRONTEND=noninteractive sudo apt upgrade -y - DEBIAN_FRONTEND=noninteractive sudo apt dist-upgrade -y - DEBIAN_FRONTEND=noninteractive sudo apt autoclean -y - DEBIAN_FRONTEND=noninteractive sudo apt autoremove -y + DEBIAN_FRONTEND=noninteractive NEEDRESTART_MODE=a sudo apt update + DEBIAN_FRONTEND=noninteractive NEEDRESTART_MODE=a sudo apt upgrade -y + DEBIAN_FRONTEND=noninteractive NEEDRESTART_MODE=a sudo apt dist-upgrade -y + DEBIAN_FRONTEND=noninteractive NEEDRESTART_MODE=a sudo apt autoclean -y + DEBIAN_FRONTEND=noninteractive NEEDRESTART_MODE=a sudo apt autoremove -y + if [ "$opt_mode" ]; then VAR_STATUS='system: update' NotifyMessage "info" "$VAR_DOMAIN" "$VAR_STATUS" From 8a62d1232793ed27396510feafa68a657bf0b558 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 27 Feb 2024 19:03:43 +0000 Subject: [PATCH 16/17] Set version to v.4.0.6 --- node-installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-installer.sh b/node-installer.sh index 02813555..fa544ebf 100644 --- a/node-installer.sh +++ b/node-installer.sh @@ -1,6 +1,6 @@ #!/bin/sh -VRSN="v.4.0.5" +VRSN="v.4.0.6" BUILD="20240227_090931" VAR_DOMAIN='' From 1a6580a9ecf403f8c07a5fffb3c5b8e35ebe6313 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 27 Feb 2024 19:04:14 +0000 Subject: [PATCH 17/17] Update release artifacts [v.4.0.6] [skip actions] --- node-installer.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node-installer.sh b/node-installer.sh index fa544ebf..774bea08 100644 --- a/node-installer.sh +++ b/node-installer.sh @@ -1,7 +1,7 @@ #!/bin/sh VRSN="v.4.0.6" -BUILD="20240227_090931" +BUILD="20240227_200407" VAR_DOMAIN='' VAR_HOST='' @@ -133,19 +133,19 @@ DEBIAN_FRONTEND=noninteractive sudo apt-get install curl -y -qq >/dev/null 2>&1 InstallerHash=$(curl -L https://github.com/dlt-green/node-installer-docker/releases/download/$VRSN/checksum.txt) >/dev/null 2>&1 -IotaHornetHash='7f0912e967fa5e609aeeceb14ba5a94a0f6000a6596cabcd3ba27c42e8b7f1e4' +IotaHornetHash='b9eaff4cdaf2d13a2679622f00c590b1b2ba0e73e9a3f503db136a9f7d88e081' IotaHornetPackage="https://github.com/dlt-green/node-installer-docker/releases/download/$VRSN/iota-hornet.tar.gz" -IotaWaspHash='19d291c530e02238326942b179ea9bae419ecfd3011727f1181c02d884f84106' +IotaWaspHash='d251d6973445bdc435420f1a70025eae73a259d617d79dac01ec847f4d78e85f' IotaWaspPackage="https://github.com/dlt-green/node-installer-docker/releases/download/$VRSN/iota-wasp.tar.gz" -ShimmerHornetHash='3b1f2ed0a5a403666404d28a16cdab1d3fa13265030b40f13fc58b6b0393d73d' +ShimmerHornetHash='8054f1f3bb3dc02987adc2425c00b2bb1c14c5cf6b278ae63803f0b706412946' ShimmerHornetPackage="https://github.com/dlt-green/node-installer-docker/releases/download/$VRSN/shimmer-hornet.tar.gz" -ShimmerWaspHash='863d779bfde34e8253a9434e25420ce9966540e763c77e1cc767df9c621fdc9a' +ShimmerWaspHash='6741e6b269f8f07074241c2679a6889da34afbab7321275f55284c9c5c1ac74d' ShimmerWaspPackage="https://github.com/dlt-green/node-installer-docker/releases/download/$VRSN/shimmer-wasp.tar.gz" -ShimmerChronicleHash='3b763df05d82d9eb1f81da6b0213a92603eebe2287742d4d09b21d711008834e' +ShimmerChronicleHash='f1745f77b5e0090e9482feeb9e17c2276010ffb02d27aa4c80555de96b1cebfa' ShimmerChroniclePackage="https://github.com/dlt-green/node-installer-docker/releases/download/$VRSN/shimmer-chronicle.tar.gz" if [ "$VRSN" = 'dev-latest' ]; then VRSN=$BUILD; fi