Repository: incubator-stratos Updated Branches: refs/heads/master 264f3c152 -> bba371dfd
adding few comments to nodes.pp Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/bba371df Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/bba371df Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/bba371df Branch: refs/heads/master Commit: bba371dfda70c3710a0b846338868322b3ef29d6 Parents: 264f3c1 Author: Nirmal Fernando <[email protected]> Authored: Sun Feb 23 17:51:15 2014 +0530 Committer: Nirmal Fernando <[email protected]> Committed: Sun Feb 23 17:51:15 2014 +0530 ---------------------------------------------------------------------- tools/puppet3/manifests/nodes.pp | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/bba371df/tools/puppet3/manifests/nodes.pp ---------------------------------------------------------------------- diff --git a/tools/puppet3/manifests/nodes.pp b/tools/puppet3/manifests/nodes.pp index 14f4f6a..38f9cc9 100644 --- a/tools/puppet3/manifests/nodes.pp +++ b/tools/puppet3/manifests/nodes.pp @@ -2,11 +2,15 @@ node 'base' { #essential variables $package_repo = 'http://10.4.128.7' + #following directory is used to store binary packages $local_package_dir = '/mnt/packs' + # Stratos message broker IP and port $mb_ip = '10.4.128.12' $mb_port = '5672' + # Stratos CEP IP and port $cep_ip = '10.4.128.10' $cep_port = '7611' + # Stratos Cartridge Agentâs trust store password $truststore_password = 'wso2carbon' #following variables required only if you want to install stratos using puppet.
