blob: 04e4240142c64eef99b21c511eb73f9bb3c72cab (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/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
|