Skip to content

Commit

Permalink
Tag update
Browse files Browse the repository at this point in the history
  • Loading branch information
afiniel committed May 1, 2022
1 parent 6b56e46 commit d6cf353
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion bootstrap_coin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#########################################################

if [ -z "${TAG}" ]; then
TAG=v1.0.3.2
TAG=v1.0.3.3
fi

# Clone the yiimpool repository if it doesn't exist.
Expand Down
2 changes: 1 addition & 1 deletion bootstrap_single.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#########################################################

if [ -z "${TAG}" ]; then
TAG=v1.0.3.2
TAG=v1.0.3.3
fi

# Clone the yiimpool repository if it doesn't exist.
Expand Down
6 changes: 3 additions & 3 deletions create_user.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ cd ~/yiimpool/install
clear

# Welcome
message_box "Yiimpool Installer v1.0.3.2" \
"Hello and thanks for using the Yiimpool Installer v1.0.3.2!
message_box "Yiimpool Installer v1.0.3.3" \
"Hello and thanks for using the Yiimpool Installer v1.0.3.3!
\n\nInstallation for the most part is fully automated. In most cases any user responses that are needed are asked prior to the installation.
\n\nNOTE: You should only install this on a brand new Ubuntu 16.04 or Ubuntu 18.04 installation."
# Root warning message box
message_box "Yiimpool Installer v1.0.3.2" \
message_box "Yiimpool Installer v1.0.3.3" \
"WARNING: You are trying to install as the root user!
\n\nRunning any program as root is not recommended and can pose serious security risks that you want to avoid.
\n\nThe next step you will be asked to create a new user account, you can name it whatever you want."
Expand Down
2 changes: 1 addition & 1 deletion functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function term_art {
echo " ╚██╔╝ ██║██║██║╚██╔╝██║██╔═══╝ ██║ ██║██║ ██║██║ "
echo " ██║ ██║██║██║ ╚═╝ ██║██║ ╚██████╔╝╚██████╔╝███████╗ "
echo " ╚═╝ ╚═╝╚═╝╚═╝ ╚═╝╚═╝ ╚═════╝ ╚═════╝ ╚══════╝ "
echo " Yiimp Installer v1.0.3.2 "
echo " Yiimp Installer v1.0.3.3 "
echo "-------------------------------------------------------------"
echo
}
Expand Down
2 changes: 1 addition & 1 deletion menu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

source /etc/functions.sh

RESULT=$(dialog --stdout --nocancel --default-item 1 --title "Yiimpool v1.0.3.2" --menu "Choose one" -1 60 16 \
RESULT=$(dialog --stdout --nocancel --default-item 1 --title "Yiimpool v1.0.3.3" --menu "Choose one" -1 60 16 \
' ' "- YiiMP Server Install -" \
1 "YiiMP Single Server" \
' ' "- Daemon Wallet Builder -" \
Expand Down
2 changes: 1 addition & 1 deletion preflight.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ fi
ARCHITECTURE=$(uname -m)
if [ "$ARCHITECTURE" != "x86_64" ]; then
if [ -z "$ARM" ]; then
echo "Yiimpool Installer v1.0.3.2 only supports x86_64 and will not work on any other architecture, like ARM or 32 bit OS."
echo "Yiimpool Installer v1.0.3.3 only supports x86_64 and will not work on any other architecture, like ARM or 32 bit OS."
echo "Your architecture is $ARCHITECTURE"
exit
fi
Expand Down
6 changes: 3 additions & 3 deletions start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ if [[ ("$FIRST_TIME_SETUP" == "1") ]]; then
# Are we running as root?
if [[ $EUID -ne 0 ]]; then
# Welcome
message_box "Yiimpool Installer v1.0.3.2" \
"Hello and thanks for using the Yiimpool Installer v1.0.3.2!
message_box "Yiimpool Installer v1.0.3.3" \
"Hello and thanks for using the Yiimpool Installer v1.0.3.3!
\n\nInstallation for the most part is fully automated. In most cases any user responses that are needed are asked prior to the installation.
\n\nNOTE: You should only install this on a brand new Ubuntu 16.04 or Ubuntu 18.04 installation."
source existing_user.sh
Expand Down Expand Up @@ -98,7 +98,7 @@ clear
echo
echo "-----------------------------------------------"
echo
echo Thank you for using the Yiimpool Installer v1.0.3.2!
echo Thank you for using the Yiimpool Installer v1.0.3.3!
echo
echo To run this installer anytime simply type, yiimpool!
echo Donations for continued support of this script are welcomed at:
Expand Down

0 comments on commit d6cf353

Please sign in to comment.