You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print_message "Please enter the numbers corresponding to the services you'd like to run (e.g., 1 2 3):"
118
-
read -r SERVICES_SELECTED
118
+
# read -r SERVICES_SELECTED
119
+
read -p "Selection: " SERVICES_SELECTED
119
120
echo""
120
121
121
122
# Build a list of services to disable using profiles
@@ -154,7 +155,8 @@ echo "";
154
155
155
156
# Prompt for START_HEIGHT
156
157
print_question "By default, your node will sync from block 0. If you want to start from a specific block, enter the block number. Otherwise, leave it empty."
print_success "Your node will start syncing from block $START_HEIGHT"
@@ -165,7 +167,8 @@ echo ""
165
167
166
168
# Prompt for STOP_HEIGHT
167
169
print_question "Your node will sync indefinitely by default. If you want to stop at a specific block, enter the block number. Otherwise, leave it empty."
168
-
read -r STOP_HEIGHT
170
+
# read -r STOP_HEIGHT
171
+
read -p "STOP_HEIGHT: " STOP_HEIGHT
169
172
if [ -n"$STOP_HEIGHT" ];then
170
173
update_or_add_env_var "STOP_HEIGHT""$STOP_HEIGHT"
171
174
print_success "Your node will stop syncing at block $STOP_HEIGHT"
@@ -176,14 +179,15 @@ echo ""
176
179
177
180
# Step 6: Ask if the user wants the node to resolve ArNS names
178
181
print_question "Do you want your node to resolve ArNS names? (y/n)"
179
-
read -r RESOLVE_ARNS
182
+
# read -r RESOLVE_ARNS
183
+
read -p "RESOLVE_ARNS: " RESOLVE_ARNS
180
184
181
185
if [ "$RESOLVE_ARNS"="y" ] || [ "$RESOLVE_ARNS"="Y" ];then
182
186
print_question "Please enter the domain that your node will use for resolving ArNS names (e.g., example.com)."
0 commit comments