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.
1 parent 67eb3f4 commit 68d8d3eCopy full SHA for 68d8d3e
scripts/setup_fullnode.sh
@@ -377,6 +377,18 @@ function main() {
377
fi
378
379
380
+ if [ $_PLUGINS_ ] && [ "$_PLUGINS_"X = "gateway"X ];then
381
+ plugins=Y
382
+ else
383
+ plugins=N
384
+ fi
385
+
386
+ read -p "Do you want to enable gateway plugin [Y/N] (Default: $plugins)? " plugins
387
+ if [ "${plugins}X" = "yX" ];then
388
+ _PLUGINS_=gateway
389
+ echo "Gateway plugin enabled"
390
391
392
# Get the latest version.
393
lastversion=$(curl -sS https://raw.githubusercontent.com/iotexproject/iotex-bootstrap/master/README.md|grep "^- $_GREP_STRING_:"|awk '{print $3}')
394
0 commit comments