HADOOP-15923. create-release script should set max-cache-ttl as well as default-cache-ttl for gpg-agent.

This commit is contained in:
Akira Ajisaka 2018-11-13 13:40:43 +09:00
parent f8713f8ade
commit 703b2860a4
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50
1 changed files with 2 additions and 1 deletions

View File

@ -253,7 +253,8 @@ function startgpgagent
if [[ "${SIGN}" = true ]]; then
if [[ -n "${GPGAGENT}" && -z "${GPG_AGENT_INFO}" ]]; then
echo "starting gpg agent"
echo "default-cache-ttl 14400" > "${LOGDIR}/gpgagent.conf"
echo "default-cache-ttl 36000" > "${LOGDIR}/gpgagent.conf"
echo "max-cache-ttl 36000" >> "${LOGDIR}/gpgagent.conf"
# shellcheck disable=2046
eval $("${GPGAGENT}" --daemon \
--options "${LOGDIR}/gpgagent.conf" \