[38/50] [abbrv] hadoop git commit: HADOOP-15923. create-release script should set max-cache-ttl as well as default-cache-ttl for gpg-agent.

2018-12-14 Thread jhung
HADOOP-15923. create-release script should set max-cache-ttl as well as 
default-cache-ttl for gpg-agent.

(cherry picked from commit 703b2860a49577629e7b3ef461d8a61292e79c88)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/f64b4516
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/f64b4516
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/f64b4516

Branch: refs/heads/branch-2-jhung-test
Commit: f64b4516c9d06402060db456ea4fe4866b984fb8
Parents: 00b4455
Author: Akira Ajisaka 
Authored: Tue Nov 13 13:40:43 2018 +0900
Committer: Jonathan Hung 
Committed: Fri Dec 14 16:03:56 2018 -0800

--
 dev-support/bin/create-release | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/f64b4516/dev-support/bin/create-release
--
diff --git a/dev-support/bin/create-release b/dev-support/bin/create-release
index 39c9133..fbe3fb2 100755
--- a/dev-support/bin/create-release
+++ b/dev-support/bin/create-release
@@ -259,7 +259,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" \


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



[41/49] hadoop git commit: HADOOP-15923. create-release script should set max-cache-ttl as well as default-cache-ttl for gpg-agent.

2018-11-12 Thread brahma
HADOOP-15923. create-release script should set max-cache-ttl as well as 
default-cache-ttl for gpg-agent.


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/703b2860
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/703b2860
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/703b2860

Branch: refs/heads/HDFS-13891
Commit: 703b2860a49577629e7b3ef461d8a61292e79c88
Parents: f8713f8
Author: Akira Ajisaka 
Authored: Tue Nov 13 13:40:43 2018 +0900
Committer: Akira Ajisaka 
Committed: Tue Nov 13 13:40:43 2018 +0900

--
 dev-support/bin/create-release | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/703b2860/dev-support/bin/create-release
--
diff --git a/dev-support/bin/create-release b/dev-support/bin/create-release
index 6ec3503..c861654 100755
--- a/dev-support/bin/create-release
+++ b/dev-support/bin/create-release
@@ -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" \


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



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

2018-11-12 Thread aajisaka
Repository: hadoop
Updated Branches:
  refs/heads/branch-2.9.2 fec6c8a46 -> 826afbeae


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

(cherry picked from commit 703b2860a49577629e7b3ef461d8a61292e79c88)
(cherry picked from commit a86b665340696bd83b6062025282dda40eaaa9fb)
(cherry picked from commit 5884b1c28f4bd9137e6eb04ab7d0ad080b55b50f)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/826afbea
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/826afbea
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/826afbea

Branch: refs/heads/branch-2.9.2
Commit: 826afbeae31ca687bc2f8471dc841b66ed2c6704
Parents: fec6c8a
Author: Akira Ajisaka 
Authored: Tue Nov 13 13:40:43 2018 +0900
Committer: Akira Ajisaka 
Committed: Tue Nov 13 13:45:18 2018 +0900

--
 dev-support/bin/create-release | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/826afbea/dev-support/bin/create-release
--
diff --git a/dev-support/bin/create-release b/dev-support/bin/create-release
index 39c9133..fbe3fb2 100755
--- a/dev-support/bin/create-release
+++ b/dev-support/bin/create-release
@@ -259,7 +259,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" \


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



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

2018-11-12 Thread aajisaka
Repository: hadoop
Updated Branches:
  refs/heads/branch-2.8 31aafb886 -> e3593c09d


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

(cherry picked from commit 703b2860a49577629e7b3ef461d8a61292e79c88)
(cherry picked from commit a86b665340696bd83b6062025282dda40eaaa9fb)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/e3593c09
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/e3593c09
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/e3593c09

Branch: refs/heads/branch-2.8
Commit: e3593c09d429b786fc98de516fc520f622e957be
Parents: 31aafb8
Author: Akira Ajisaka 
Authored: Tue Nov 13 13:40:43 2018 +0900
Committer: Akira Ajisaka 
Committed: Tue Nov 13 13:44:49 2018 +0900

--
 dev-support/bin/create-release | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/e3593c09/dev-support/bin/create-release
--
diff --git a/dev-support/bin/create-release b/dev-support/bin/create-release
index 8b138e5..09066a1 100755
--- a/dev-support/bin/create-release
+++ b/dev-support/bin/create-release
@@ -259,7 +259,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" \


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



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

2018-11-12 Thread aajisaka
Repository: hadoop
Updated Branches:
  refs/heads/branch-2.9 7f81ebeb9 -> 5884b1c28


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

(cherry picked from commit 703b2860a49577629e7b3ef461d8a61292e79c88)
(cherry picked from commit a86b665340696bd83b6062025282dda40eaaa9fb)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/5884b1c2
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/5884b1c2
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/5884b1c2

Branch: refs/heads/branch-2.9
Commit: 5884b1c28f4bd9137e6eb04ab7d0ad080b55b50f
Parents: 7f81ebe
Author: Akira Ajisaka 
Authored: Tue Nov 13 13:40:43 2018 +0900
Committer: Akira Ajisaka 
Committed: Tue Nov 13 13:43:05 2018 +0900

--
 dev-support/bin/create-release | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/5884b1c2/dev-support/bin/create-release
--
diff --git a/dev-support/bin/create-release b/dev-support/bin/create-release
index 39c9133..fbe3fb2 100755
--- a/dev-support/bin/create-release
+++ b/dev-support/bin/create-release
@@ -259,7 +259,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" \


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



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

2018-11-12 Thread aajisaka
Repository: hadoop
Updated Branches:
  refs/heads/branch-2 b7ca20e16 -> a86b66534


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

(cherry picked from commit 703b2860a49577629e7b3ef461d8a61292e79c88)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/a86b6653
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/a86b6653
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/a86b6653

Branch: refs/heads/branch-2
Commit: a86b665340696bd83b6062025282dda40eaaa9fb
Parents: b7ca20e
Author: Akira Ajisaka 
Authored: Tue Nov 13 13:40:43 2018 +0900
Committer: Akira Ajisaka 
Committed: Tue Nov 13 13:42:37 2018 +0900

--
 dev-support/bin/create-release | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/a86b6653/dev-support/bin/create-release
--
diff --git a/dev-support/bin/create-release b/dev-support/bin/create-release
index 39c9133..fbe3fb2 100755
--- a/dev-support/bin/create-release
+++ b/dev-support/bin/create-release
@@ -259,7 +259,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" \


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



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

2018-11-12 Thread aajisaka
Repository: hadoop
Updated Branches:
  refs/heads/branch-3.1 b6ef824e7 -> e67e00724


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

(cherry picked from commit 703b2860a49577629e7b3ef461d8a61292e79c88)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/e67e0072
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/e67e0072
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/e67e0072

Branch: refs/heads/branch-3.1
Commit: e67e00724ebfc52bd6084dbf2bfbc674c2c7fa6f
Parents: b6ef824
Author: Akira Ajisaka 
Authored: Tue Nov 13 13:40:43 2018 +0900
Committer: Akira Ajisaka 
Committed: Tue Nov 13 13:42:01 2018 +0900

--
 dev-support/bin/create-release | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/e67e0072/dev-support/bin/create-release
--
diff --git a/dev-support/bin/create-release b/dev-support/bin/create-release
index 949a46f..b0f01d7 100755
--- a/dev-support/bin/create-release
+++ b/dev-support/bin/create-release
@@ -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" \


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



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

2018-11-12 Thread aajisaka
Repository: hadoop
Updated Branches:
  refs/heads/branch-3.2 e6532f7eb -> 861105747


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

(cherry picked from commit 703b2860a49577629e7b3ef461d8a61292e79c88)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/86110574
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/86110574
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/86110574

Branch: refs/heads/branch-3.2
Commit: 861105747bdb8c1ade3369237c10d159cce34bf1
Parents: e6532f7
Author: Akira Ajisaka 
Authored: Tue Nov 13 13:40:43 2018 +0900
Committer: Akira Ajisaka 
Committed: Tue Nov 13 13:41:42 2018 +0900

--
 dev-support/bin/create-release | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/86110574/dev-support/bin/create-release
--
diff --git a/dev-support/bin/create-release b/dev-support/bin/create-release
index 6ec3503..c861654 100755
--- a/dev-support/bin/create-release
+++ b/dev-support/bin/create-release
@@ -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" \


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



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

2018-11-12 Thread aajisaka
Repository: hadoop
Updated Branches:
  refs/heads/trunk f8713f8ad -> 703b2860a


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


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/703b2860
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/703b2860
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/703b2860

Branch: refs/heads/trunk
Commit: 703b2860a49577629e7b3ef461d8a61292e79c88
Parents: f8713f8
Author: Akira Ajisaka 
Authored: Tue Nov 13 13:40:43 2018 +0900
Committer: Akira Ajisaka 
Committed: Tue Nov 13 13:40:43 2018 +0900

--
 dev-support/bin/create-release | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/703b2860/dev-support/bin/create-release
--
diff --git a/dev-support/bin/create-release b/dev-support/bin/create-release
index 6ec3503..c861654 100755
--- a/dev-support/bin/create-release
+++ b/dev-support/bin/create-release
@@ -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" \


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org