Files
nocodb/docker-compose/setup-script/tests/expects/install/default.sh
2024-05-02 12:10:07 +00:00

20 lines
380 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
# Respond to script prompts
expect "Enter the IP address or domain name for the NocoDB instance (default: localhost):"
send "\r"
expect "Show Advanced Options*"
send "\r"
expect "Do you want to start the management menu*"
send "N\r"
expect eof