mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 23:55:47 -06:00
8 lines
176 B
Bash
Executable File
8 lines
176 B
Bash
Executable File
#!/usr/bin/env expect
|
|
|
|
set password [lindex $argv 0]
|
|
spawn gpg --detach-sign --armor /rpm-repo/repodata/repomd.xml
|
|
expect "Enter passphrase: "
|
|
send -- "$password\r"
|
|
expect eof
|