Updated Branches: refs/heads/master 3187bc6d3 -> 02ca9c25b
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/02ca9c25 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/02ca9c25 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/02ca9c25 Branch: refs/heads/master Commit: 02ca9c25b32411613ae6061e619c49132e0cd7e2 Parents: 5547824 Author: Alex Huang <[email protected]> Authored: Mon Oct 1 17:14:24 2012 -0700 Committer: Alex Huang <[email protected]> Committed: Mon Oct 1 17:16:09 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/02ca9c25/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
