node-red / linux-installers

Node-RED install scripts for various flavours of Linux
Apache License 2.0
94 stars 63 forks source link

Bypass settings file initialisation #46

Closed lukesb closed 6 months ago

lukesb commented 6 months ago

I'm using this in a bash script

CONFIRM_ROOT=y CONFIRM_INSTALL=y bash <(curl -sL https://raw.githubusercontent.com/node-red/linux-installers/master/deb/update-nodejs-and-nodered)

Is it possible to have it skip or automate past this part?

`Node-RED Settings File initialisation

This tool will help you create a Node-RED settings file.

? Settings file ‣ /home/pi/.node-red/settings.js `

dceejay commented 6 months ago

You should be able to call the install with --no-init or INITSET=n

lukesb commented 6 months ago

INITSET=n worked great, thanks