Repository: bigtop Updated Branches: refs/heads/master 6e9630ca4 -> 67bc8230a
BIGTOP-2408 : group_filter variable value is not templatize in puppet module of hue Signed-off-by: Olaf Flebbe <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/66fdf287 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/66fdf287 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/66fdf287 Branch: refs/heads/master Commit: 66fdf2871602cec7f718bc0bc3dd0ede1846f63b Parents: 6e9630c Author: Amit Kabra <[email protected]> Authored: Mon Apr 25 14:34:36 2016 +0530 Committer: Olaf Flebbe <[email protected]> Committed: Tue Apr 26 21:45:37 2016 +0200 ---------------------------------------------------------------------- bigtop-deploy/puppet/modules/hue/manifests/init.pp | 1 + bigtop-deploy/puppet/modules/hue/templates/hue.ini | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/66fdf287/bigtop-deploy/puppet/modules/hue/manifests/init.pp ---------------------------------------------------------------------- diff --git a/bigtop-deploy/puppet/modules/hue/manifests/init.pp b/bigtop-deploy/puppet/modules/hue/manifests/init.pp index c7f1603..85c1b95 100644 --- a/bigtop-deploy/puppet/modules/hue/manifests/init.pp +++ b/bigtop-deploy/puppet/modules/hue/manifests/init.pp @@ -31,6 +31,7 @@ class hue { $hive_host = "", $hive_port = "10000", $zookeeper_host_port = "localhost:2181", $force_username_lowercase = "false", + $group_filter_value = "objectclass=groupOfEntries", $rm_logical_name = undef, $rm_api_port = "8088", $app_blacklist = "impala, security", $hue_host = "0.0.0.0", $hue_port = "8888", $hue_timezone = "America/Los_Angeles", $default_fs = "hdfs://localhost:8020", http://git-wip-us.apache.org/repos/asf/bigtop/blob/66fdf287/bigtop-deploy/puppet/modules/hue/templates/hue.ini ---------------------------------------------------------------------- diff --git a/bigtop-deploy/puppet/modules/hue/templates/hue.ini b/bigtop-deploy/puppet/modules/hue/templates/hue.ini index 39260a7..7979572 100644 --- a/bigtop-deploy/puppet/modules/hue/templates/hue.ini +++ b/bigtop-deploy/puppet/modules/hue/templates/hue.ini @@ -282,7 +282,7 @@ # Base filter for searching for groups <% if @group_filter -%> - group_filter="objectclass=groupOfEntries" + group_filter="<%= @group_filter_value %>" <% end -%> # The group name attribute in the LDAP schema
