changing default values correctly
Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/81a1c06c Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/81a1c06c Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/81a1c06c Branch: refs/heads/master Commit: 81a1c06c892144c8481983c2081fb00d47ba74c5 Parents: e8c18a6 Author: Nirmal Fernando <[email protected]> Authored: Sat Mar 29 20:09:12 2014 +0530 Committer: Nirmal Fernando <[email protected]> Committed: Sat Mar 29 20:09:12 2014 +0530 ---------------------------------------------------------------------- tools/puppet3/manifests/nodes.pp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/81a1c06c/tools/puppet3/manifests/nodes.pp ---------------------------------------------------------------------- diff --git a/tools/puppet3/manifests/nodes.pp b/tools/puppet3/manifests/nodes.pp index f226088..dda9557 100644 --- a/tools/puppet3/manifests/nodes.pp +++ b/tools/puppet3/manifests/nodes.pp @@ -3,11 +3,11 @@ node 'base' { #essential variables $package_repo = 'http://10.4.128.7' $local_package_dir = '/mnt/packs' - $mb_ip = '54.255.43.95' - $mb_port = '5677' + $mb_ip = '127.0.0.1' + $mb_port = '61616' $mb_type = 'activemq' #in wso2 mb case, value should be 'wso2mb' - $cep_ip = '54.255.43.95' - $cep_port = '7615' + $cep_ip = '127.0.0.1' + $cep_port = '7611' $truststore_password = 'wso2carbon' $java_distribution = 'jdk-7u7-linux-x64.tar.gz' $java_name = 'jdk1.7.0_07' @@ -18,7 +18,7 @@ node 'base' { $enable_log_publisher = 'false' $bam_ip = '127.0.0.1' $bam_port = '7611' - $bam_secure_port = '7615' + $bam_secure_port = '7711' $bam_username = 'admin' $bam_password = 'admin'
