Updated Branches: refs/heads/4.0 d9544a2fb -> 381c649bf
Applied patch to get rid of cloud-premium Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/381c649b Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/381c649b Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/381c649b Branch: refs/heads/4.0 Commit: 381c649bf399c60b9e0ac8696cdf7e16fa6cd7e2 Parents: d9544a2 Author: Alex Huang <[email protected]> Authored: Mon Oct 1 17:14:24 2012 -0700 Committer: Alex Huang <[email protected]> Committed: Mon Oct 1 17:14:24 2012 -0700 ---------------------------------------------------------------------- tools/build/installer/rpminstall_full.sh | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/381c649b/tools/build/installer/rpminstall_full.sh ---------------------------------------------------------------------- diff --git a/tools/build/installer/rpminstall_full.sh b/tools/build/installer/rpminstall_full.sh index 5e6f0c3..4033297 100755 --- a/tools/build/installer/rpminstall_full.sh +++ b/tools/build/installer/rpminstall_full.sh @@ -111,13 +111,14 @@ if [ "$installtype" == "q" -o "$installtype" == "Q" ] ; then elif [ "$installtype" == "m" -o "$installtype" == "M" ] ; then echo "Installing the Management Server..." >&2 - doinstall cloud-client cloud-premium + doinstall cloud-client true elif [ "$installtype" == "a" -o "$installtype" == "A" ] ; then echo "Installing the Agent..." >&2 - if doinstall cloud-agent cloud-premium ; then + if doinstall cloud-agent; then + echo "Agent installation is completed, please add the host from management server" >&2 else true @@ -130,7 +131,7 @@ elif [ "$installtype" == "b" -o "$installtype" == "B" ] ; then elif [ "$installtype" == "s" -o "$installtype" == "S" ] ; then echo "Installing the Usage Server..." >&2 - doinstall cloud-usage cloud-premium + doinstall cloud-usage true elif [ "$installtype" == "d" -o "$installtype" == "D" ] ; then
