mirror of
https://gitlab.com/futo-org/fcast.git
synced 2025-06-24 21:25:23 +00:00
16 lines
288 B
Bash
Executable file
16 lines
288 B
Bash
Executable file
#!/usr/bin/expect -f
|
|
|
|
set timeout -1
|
|
spawn {*}$argv
|
|
|
|
expect "Author password: "
|
|
send -- "$env(CERT_AUTHOR_PASSWORD)\n"
|
|
expect "Yes: (Y), No: (N) ?"
|
|
send -- "n\n"
|
|
|
|
expect "Distributor1 password: "
|
|
send -- "$env(CERT_DIST_PASSWORD)\n"
|
|
expect "Yes: (Y), No: (N) ?"
|
|
send -- "n\n"
|
|
|
|
expect eof
|