Files
nocodb/docker-compose/setup-script/tests/expects/configure/scale.sh
2024-05-02 13:01:18 +00:00

21 lines
349 B
Bash
Executable File

#!/usr/bin/expect -f
# Configure timeout for each expect command
set timeout 10
# Start your main script
spawn bash ../../noco.sh
expect "Do you want to reinstall NocoDB*"
send "N\r"
expect "Enter your choice: "
send "6\r"
expect "How many instances of NocoDB do you want to run*"
send "3\r"
expect "Enter your choice: "
send "0\r"
expect EOF