Updated Branches: refs/heads/branch-1.2.4 f703b4f55 -> 9569223d2
AMBARI-2609. Fix rat check issues. (yusaku) Project: http://git-wip-us.apache.org/repos/asf/incubator-ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ambari/commit/9569223d Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/9569223d Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/9569223d Branch: refs/heads/branch-1.2.4 Commit: 9569223d2333f22478f763b8f46d840ecc3f1a32 Parents: f703b4f Author: Yusaku Sako <[email protected]> Authored: Tue Jul 9 18:48:13 2013 -0700 Committer: Yusaku Sako <[email protected]> Committed: Tue Jul 9 18:48:13 2013 -0700 ---------------------------------------------------------------------- ambari-server/pom.xml | 1 + ambari-server/src/test/resources/deploy_HDP2.sh | 17 ++++++++++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/9569223d/ambari-server/pom.xml ---------------------------------------------------------------------- diff --git a/ambari-server/pom.xml b/ambari-server/pom.xml index c04c4bd..208f388 100644 --- a/ambari-server/pom.xml +++ b/ambari-server/pom.xml @@ -65,6 +65,7 @@ <exclude>src/test/resources/temporal_ganglia_data.txt</exclude> <exclude>src/test/resources/users.ldif</exclude> <exclude>src/main/resources/ca.config</exclude> + <exclude>src/main/resources/hive-schema-0.10.0.oracle.sql</exclude> <exclude>src/main/resources/db/serial</exclude> <exclude>src/main/resources/db/index.txt</exclude> <exclude>conf/unix/ca.config</exclude> http://git-wip-us.apache.org/repos/asf/incubator-ambari/blob/9569223d/ambari-server/src/test/resources/deploy_HDP2.sh ---------------------------------------------------------------------- diff --git a/ambari-server/src/test/resources/deploy_HDP2.sh b/ambari-server/src/test/resources/deploy_HDP2.sh index 37f5528..3ee0e3f 100644 --- a/ambari-server/src/test/resources/deploy_HDP2.sh +++ b/ambari-server/src/test/resources/deploy_HDP2.sh @@ -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. + HOST=dev01.hortonworks.com curl -i -X POST -d '{"Clusters": {"version" : "HDP-2.0.1"}}' -u admin:admin http://localhost:8080/api/v1/clusters/c1 @@ -42,4 +57,4 @@ echo "-----------------------Components to hosts-----------------------" curl -i -X PUT -d '{"RequestInfo": {"context" :"Installing Services"}, "Body": {"ServiceInfo": {"state": "INSTALLED"}}}' -u admin:admin http://localhost:8080/api/v1/clusters/c1/services?ServiceInfo/state=INIT echo "-----------------------Installation requested-----------------------" -#curl -i -X PUT -d '{"RequestInfo": {"context" :"Starting Services"}, "Body": {"ServiceInfo": {"state": "STARTED"}}}' -u admin:admin http://localhost:8080/api/v1/clusters/c1/services?ServiceInfo/state=INSTALLED \ No newline at end of file +#curl -i -X PUT -d '{"RequestInfo": {"context" :"Starting Services"}, "Body": {"ServiceInfo": {"state": "STARTED"}}}' -u admin:admin http://localhost:8080/api/v1/clusters/c1/services?ServiceInfo/state=INSTALLED
