Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 9DB14200C3F for ; Wed, 22 Mar 2017 21:26:51 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 9AB33160B94; Wed, 22 Mar 2017 20:26:51 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E643F160B86 for ; Wed, 22 Mar 2017 21:26:50 +0100 (CET) Received: (qmail 75225 invoked by uid 500); 22 Mar 2017 20:26:50 -0000 Mailing-List: contact commits-help@bigtop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: bigtop-dev@bigtop.apache.org Delivered-To: mailing list commits@bigtop.apache.org Received: (qmail 75206 invoked by uid 99); 22 Mar 2017 20:26:49 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Mar 2017 20:26:49 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B5046DFC15; Wed, 22 Mar 2017 20:26:49 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: rvs@apache.org To: commits@bigtop.apache.org Date: Wed, 22 Mar 2017 20:26:51 -0000 Message-Id: In-Reply-To: <954af1836e6247fcbd4c19f482182be5@git.apache.org> References: <954af1836e6247fcbd4c19f482182be5@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/3] bigtop git commit: BIGTOP-2711. fix rat problems archived-at: Wed, 22 Mar 2017 20:26:51 -0000 BIGTOP-2711. fix rat problems Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/c1cd696f Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/c1cd696f Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/c1cd696f Branch: refs/heads/master Commit: c1cd696fe405e7b622d9ab14440053a79f825112 Parents: 4be5b98 Author: Roman Shaposhnik Authored: Wed Mar 22 12:17:50 2017 -0700 Committer: Roman Shaposhnik Committed: Wed Mar 22 12:50:14 2017 -0700 ---------------------------------------------------------------------- bigtop-packages/src/common/ambari/ambari-server.svc | 14 ++++++++++++++ bigtop-packages/src/common/ambari/ambari.defaults | 14 ++++++++++++++ build.gradle | 1 + docker/sandbox/README.md | 15 +++++++++++++++ 4 files changed, 44 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/c1cd696f/bigtop-packages/src/common/ambari/ambari-server.svc ---------------------------------------------------------------------- diff --git a/bigtop-packages/src/common/ambari/ambari-server.svc b/bigtop-packages/src/common/ambari/ambari-server.svc index e69de29..ae1e83e 100644 --- a/bigtop-packages/src/common/ambari/ambari-server.svc +++ b/bigtop-packages/src/common/ambari/ambari-server.svc @@ -0,0 +1,14 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. http://git-wip-us.apache.org/repos/asf/bigtop/blob/c1cd696f/bigtop-packages/src/common/ambari/ambari.defaults ---------------------------------------------------------------------- diff --git a/bigtop-packages/src/common/ambari/ambari.defaults b/bigtop-packages/src/common/ambari/ambari.defaults index e69de29..ae1e83e 100644 --- a/bigtop-packages/src/common/ambari/ambari.defaults +++ b/bigtop-packages/src/common/ambari/ambari.defaults @@ -0,0 +1,14 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. http://git-wip-us.apache.org/repos/asf/bigtop/blob/c1cd696f/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index 48a1fde..08c2216 100644 --- a/build.gradle +++ b/build.gradle @@ -118,6 +118,7 @@ rat { "bigtop-packages/src/charm/**/*.json", "bigtop-packages/src/charm/**/*.svg", "bigtop-packages/src/charm/**/*.yaml", + "bigtop-packages/src/charm/**/resources/**/*.txt", "bigtop-deploy/juju/**/*.yaml", "bigtop-tests/cloud-weather-report/**/*.yaml", /* Misc individual files */ http://git-wip-us.apache.org/repos/asf/bigtop/blob/c1cd696f/docker/sandbox/README.md ---------------------------------------------------------------------- diff --git a/docker/sandbox/README.md b/docker/sandbox/README.md index 89c9e5e..711903c 100644 --- a/docker/sandbox/README.md +++ b/docker/sandbox/README.md @@ -1,3 +1,18 @@ +Licensed to the Apache Software Foundation (ASF) under one or more +contributor license agreements. See the NOTICE file distributed with +this work for additional information regarding copyright ownership. +The ASF licenses this file to You under the Apache License, Version 2.0 +(the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + # Bigtop Docker Sandbox A tool to build and run big data pseudo cluster using Docker.