We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5166655 + 68d8d3e commit 3650a7bCopy full SHA for 3650a7b
scripts/setup_fullnode.sh
@@ -393,6 +393,18 @@ function main() {
393
fi
394
395
396
+ if [ $_PLUGINS_ ] && [ "$_PLUGINS_"X = "gateway"X ];then
397
+ plugins=Y
398
+ else
399
+ plugins=N
400
+ fi
401
+
402
+ read -p "Do you want to enable gateway plugin [Y/N] (Default: $plugins)? " plugins
403
+ if [ "${plugins}X" = "yX" ];then
404
+ _PLUGINS_=gateway
405
+ echo "Gateway plugin enabled"
406
407
408
# Get the latest version.
409
lastversion=$(curl -sS https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/master/README.md|grep "^- $_GREP_STRING_:"|awk '{print $3}')
410
0 commit comments