forked from infra/ansible
We need to setup things in prod slightly differently, using keyctl. Copy in the service and scripts. Signed-off-by: Kevin Fenzi <kevin@scrye.com>
5 lines
261 B
Bash
5 lines
261 B
Bash
#!/bin/bash -e
|
|
# Courtesy of puiterwijk
|
|
passphrase=$(systemd-ask-password "Please enter passphrase for 'autosign' key: ")
|
|
keyctl add user "sigul:autosign" "${passphrase}" @s
|
|
exec /usr/bin/fedora-messaging --conf /etc/fedora-messaging/robosignatory.toml consume
|