commit
d13ce008e7
@ -18,14 +18,17 @@ After first run, when you need to reach your node, you need to run only;
|
||||
|
||||
**Autoinstaller Script for Quilibrium as a Service**
|
||||
|
||||
Use below command to install v1.4.21
|
||||
|
||||
Use below command to install v1.4.21.1
|
||||
|
||||
|
||||
wget -O - https://raw.githubusercontent.com/0xOzgur/QuilibriumTools/main/install/install_quilibrium_service.sh | bash
|
||||
|
||||
|
||||
**Autoupdater**
|
||||
|
||||
If you need to update your node from previous version to 1.4.21, apply below command
|
||||
If you need to update your node from previous version to 1.4.21.1, apply below command
|
||||
|
||||
|
||||
wget -O - https://raw.githubusercontent.com/0xOzgur/QuilibriumTools/main/update/update.sh | bash
|
||||
|
||||
|
||||
@ -1,7 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Set the version number
|
||||
VERSION="1.4.21"
|
||||
|
||||
VERSION="1.4.21.1"
|
||||
|
||||
|
||||
# Determine the ExecStart line based on the architecture
|
||||
ARCH=$(uname -m)
|
||||
|
||||
@ -60,7 +60,9 @@ git checkout release-cdn
|
||||
# Step 7:Build Docker Container
|
||||
echo "⏳Building Ceremonyclient Container"
|
||||
sleep 2 # Add a 2-second delay
|
||||
docker build --build-arg GIT_COMMIT=$(git log -1 --format=%h) -t quilibrium:1.4.21 .1.4.21
|
||||
|
||||
docker build --build-arg GIT_COMMIT=$(git log -1 --format=%h) -t quilibrium:1.4.21.1 .1.4.21.1
|
||||
|
||||
|
||||
# Step 8:Run Ceremonyclient Container
|
||||
echo "✅Running Ceremonyclient Container"
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
#!/bin/bash
|
||||
# Set the version number
|
||||
VERSION="1.4.21"
|
||||
|
||||
VERSION="1.4.21.1"
|
||||
|
||||
cd ~
|
||||
# Step 0: Welcome
|
||||
echo "This script is made with ❤️ by 0xOzgur.eth @ https://quilibrium.space "
|
||||
|
||||
@ -28,15 +28,15 @@ OS=$(uname -s)
|
||||
# Determine the node binary name based on the architecture and OS
|
||||
if [ "$ARCH" = "x86_64" ]; then
|
||||
if [ "$OS" = "Linux" ]; then
|
||||
NODE_BINARY='node-1.4.21-linux-amd64'
|
||||
NODE_BINARY='node-1.4.21.1-linux-amd64'
|
||||
elif [ "$OS" = "Darwin" ]; then
|
||||
NODE_BINARY='node-1.4.21-darwin-amd64'
|
||||
NODE_BINARY='node-1.4.21.1-darwin-amd64'
|
||||
fi
|
||||
elif [ "$ARCH" = "aarch64" ]; then
|
||||
if [ "$OS" = "Linux" ]; then
|
||||
NODE_BINARY='node-1.4.21-linux-arm64'
|
||||
NODE_BINARY='node-1.4.21.1-linux-arm64'
|
||||
elif [ "$OS" = "Darwin" ]; then
|
||||
NODE_BINARY='node-1.4.21-darwin-arm64'
|
||||
NODE_BINARY='node-1.4.21.1-darwin-arm64'
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
@ -6,7 +6,9 @@ source ~/.bashrc
|
||||
clear
|
||||
|
||||
# Set the version number
|
||||
VERSION="1.4.21"
|
||||
|
||||
VERSION="1.4.21.1"
|
||||
|
||||
|
||||
# Determine the ExecStart line based on the architecture
|
||||
ARCH=$(uname -m)
|
||||
|
||||
@ -1,5 +1,7 @@
|
||||
#!/bin/bash
|
||||
VERSION="1.4.21"
|
||||
|
||||
VERSION="1.4.21.1"
|
||||
|
||||
# Step 0: Welcome
|
||||
echo "This script is made with ❤️ by 0xOzgur.eth @ https://quilibrium.space"
|
||||
echo "⏳Enjoy and sit back while you are upgrading your Quilibrium Node to v$VERSION!"
|
||||
|
||||
@ -2,7 +2,9 @@
|
||||
|
||||
# Step 0: Welcome
|
||||
echo "This script is made with ❤️ by 0xOzgur.eth"
|
||||
echo "⏳Enjoy and sit back while you are upgrading your Quilibrium Node to v1.4.21!"
|
||||
|
||||
echo "⏳Enjoy and sit back while you are upgrading your Quilibrium Node to v1.4.21.1!"
|
||||
|
||||
echo "⏳Processing..."
|
||||
sleep 10 # Add a 10-second delay
|
||||
|
||||
@ -10,7 +12,9 @@ sleep 10 # Add a 10-second delay
|
||||
service ceremonyclient stop
|
||||
|
||||
# Step 1:Download Binary
|
||||
echo "⏳ Downloading New Release v1.4.21"
|
||||
|
||||
echo "⏳ Downloading New Release v1.4.21.1"
|
||||
|
||||
cd ~/ceremonyclient
|
||||
git pull
|
||||
git checkout release-cdn
|
||||
@ -18,7 +22,9 @@ git checkout release-cdn
|
||||
# Step 7:Build Docker Container
|
||||
echo "⏳Building Ceremonyclient Container"
|
||||
sleep 2 # Add a 2-second delay
|
||||
docker build --build-arg GIT_COMMIT=$(git log -1 --format=%h) -t quilibrium -t quilibrium:1.4.21 .
|
||||
|
||||
docker build --build-arg GIT_COMMIT=$(git log -1 --format=%h) -t quilibrium -t quilibrium:1.4.21.1 .
|
||||
|
||||
|
||||
# Step 8:Run Ceremonyclient Container
|
||||
echo "✅Running Ceremonyclient Container"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user