Skip to content

Commit 52ff704

Browse files
Merge pull request #232 from imakowski/master
Changed only description because default of autoupgrade is set to N
2 parents 3650a7b + 4e673ee commit 52ff704

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/setup_fullnode.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function checkDockerPermissions() {
3939
if [ $? = 1 ];then
4040
echo -e "your $RED [$USER] $NC not privilege docker"
4141
echo -e "please run $RED [sudo bash] $NC first"
42-
echo -e "Or docker not install "
42+
echo -e "Or docker is not installed "
4343
exit 1
4444
fi
4545
}
@@ -383,7 +383,7 @@ function main() {
383383
# Interactive setup phase
384384
read -p "Do you want to monitor the status of the node [Y/N] (Default: N)? " wantmonitor
385385
if [ "${_AUTO_UPDATE_}X" != "YX" ];then
386-
read -p "Do you want to auto update the node [Y/N] (Default: Y)? " _AUTO_UPDATE_
386+
read -p "Do you want to auto update the node [Y/N] (Default: N)? " _AUTO_UPDATE_
387387
# To upper
388388
if [ "${_AUTO_UPDATE_}X" = "nX" ];then
389389
_AUTO_UPDATE_=N
@@ -491,7 +491,7 @@ function main() {
491491

492492
startupNode
493493

494-
if [ "$_AUTO_UPDATE_"X != "N"X ];then
494+
if [ "$_AUTO_UPDATE_"X == "Y"X ];then
495495
startAutoUpdate
496496
fi
497497
}

0 commit comments

Comments
 (0)