Updated Branches: refs/heads/trunk ec3d6d5d7 -> f18c274dd
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/f18c274d Tree: http://git-wip-us.apache.org/repos/asf/incubator-ambari/tree/f18c274d Diff: http://git-wip-us.apache.org/repos/asf/incubator-ambari/diff/f18c274d Branch: refs/heads/trunk Commit: f18c274dddbcdc6948cc71378e20addc49325986 Parents: ec3d6d5 Author: Yusaku Sako <[email protected]> Authored: Tue Jul 9 18:48:13 2013 -0700 Committer: Yusaku Sako <[email protected]> Committed: Tue Jul 9 18:51:30 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/f18c274d/ambari-server/pom.xml ---------------------------------------------------------------------- diff --git a/ambari-server/pom.xml b/ambari-server/pom.xml index 42e64f3..8a889e7 100644 --- a/ambari-server/pom.xml +++ b/ambari-server/pom.xml @@ -117,6 +117,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/f18c274d/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
