10 lines
206 B
Text
Executable file
10 lines
206 B
Text
Executable file
#!/usr/bin/expect -f
|
|
|
|
### rpm-sign.exp -- Sign RPMs by sending the passphrase.
|
|
|
|
spawn rpm --addsign {*}$argv
|
|
expect -exact "Enter pass phrase: "
|
|
send -- "\r"
|
|
expect eof
|
|
|
|
## end of rpm-sign.exp
|