Updated Branches: refs/heads/master 6e767a349 -> bf30dbc24
VPC - enable passwd server service There is currently no vpcrouter type defined in patchsystemvm.sh, which controls our init scripts in the system vms. This patch allows the services that would normally start on a router to start also on the VPC router, in particular the password server was missing. Signed-off-by: Edison Su <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/bf30dbc2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/bf30dbc2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/bf30dbc2 Branch: refs/heads/master Commit: bf30dbc241c9e5439d419c43bc3218037cffc2bc Parents: 6e767a3 Author: Marcus Sorensen <[email protected]> Authored: Thu Sep 20 15:44:11 2012 -0700 Committer: Edison Su <[email protected]> Committed: Thu Sep 20 15:44:51 2012 -0700 ---------------------------------------------------------------------- .../debian/config/opt/cloud/bin/patchsystemvm.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/bf30dbc2/patches/systemvm/debian/config/opt/cloud/bin/patchsystemvm.sh ---------------------------------------------------------------------- diff --git a/patches/systemvm/debian/config/opt/cloud/bin/patchsystemvm.sh b/patches/systemvm/debian/config/opt/cloud/bin/patchsystemvm.sh index bdec43a..f994aed 100755 --- a/patches/systemvm/debian/config/opt/cloud/bin/patchsystemvm.sh +++ b/patches/systemvm/debian/config/opt/cloud/bin/patchsystemvm.sh @@ -177,7 +177,7 @@ then enable_serial_console fi -if [ "$TYPE" == "router" ] +if [ "$TYPE" == "router" ] || [ "$type" == "vpcrouter" ] then routing_svcs if [ $? -gt 0 ]
