aboutsummaryrefslogtreecommitdiff
path: root/bigtop-deploy
diff options
context:
space:
mode:
authorRoman Shaposhnik <rvs@cloudera.com>2013-06-05 16:04:15 -0700
committerRoman Shaposhnik <rvs@cloudera.com>2013-06-05 16:04:15 -0700
commitc3a551dd96236f9084113e10da4d7c7fc0a5c44a (patch)
treedd54f4c15a1541316e95d8e12edea1921552464e /bigtop-deploy
parentf06c0637bdc2c0ec4028aa42ba6c33384b0ef581 (diff)
BIGTOP-995. JDK bug 6979329 requires a redundant kinit -R
Diffstat (limited to 'bigtop-deploy')
-rw-r--r--bigtop-deploy/puppet/modules/kerberos/manifests/init.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bigtop-deploy/puppet/modules/kerberos/manifests/init.pp b/bigtop-deploy/puppet/modules/kerberos/manifests/init.pp
index 7e7f35d2..5476235c 100644
--- a/bigtop-deploy/puppet/modules/kerberos/manifests/init.pp
+++ b/bigtop-deploy/puppet/modules/kerberos/manifests/init.pp
@@ -218,7 +218,7 @@ EOF
exec { "aquire $title keytab":
path => $kerberos::site::exec_path,
user => $title,
- command => "kinit -kt $keytab ${title}/$::fqdn",
+ command => "bash -c 'kinit -kt $keytab ${title}/$::fqdn ; kinit -R'",
require => Exec["ktinject.$title"],
}
}