Install ODL from latest Boron testing repo 31/55631/1
authorDaniel Farrell <dfarrell@redhat.com>
Mon, 8 Aug 2016 19:19:47 +0000 (15:19 -0400)
committerDaniel Farrell <dfarrell@redhat.com>
Wed, 19 Apr 2017 19:18:40 +0000 (15:18 -0400)
Change-Id: I7dc85d7d9b609581feb17d8d4bbfaf6e09b3057c
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
CHANGELOG
manifests/params.pp
metadata.json
spec/spec_helper.rb

index 2605557c2af7c0ded82806c5072132147150b2f9..f9310948476ea8457b80ebe67195ccf934593edc 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -36,3 +36,5 @@
 - Add param to configure ODL RPM repo
 2016-08-08 Release 3.7.1
 - Install ODL RPM from latest Beryllium SR repo
+2016-08-08 Release 3.7.2
+- Install ODL RPM from Boron testing repo
index ec09f628a63ad8bbc8f8319b7c5ebf6bb8760049..00c8abd52dbbdf9063a4ee7a681b8bd84a679ba2 100644 (file)
@@ -13,7 +13,7 @@ class opendaylight::params {
   $odl_rest_port = '8080'
   $odl_bind_ip = '0.0.0.0'
   $install_method = 'rpm'
-  $rpm_repo = 'opendaylight-4-release'
+  $rpm_repo = 'opendaylight-5-testing'
   $tarball_url = ''
   $unitfile_url = 'https://github.com/dfarrell07/opendaylight-systemd/archive/master/opendaylight-unitfile.tar.gz'
   $odl_rest_port = '8080'
index 160926b3a344954b42508071ff5ca203047256ef..0c62bad173377e5fcebffd2edb3dea98684a0981 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "dfarrell07-opendaylight",
-  "version": "3.7.1",
+  "version": "3.7.2",
   "author": "Daniel Farrell",
   "summary": "Puppet module that installs and configures the OpenDaylight SDN controller",
   "license": "BSD-2-Clause",
index db7a904c5647a65f4a222c76f7685fd0338d0c7c..db1fe00ff11127f72df4aca53e716ef8c1f3f9b3 100644 (file)
@@ -234,7 +234,7 @@ def tarball_install_tests(options = {})
   tarball_url = options.fetch(:tarball_url, '')
   unitfile_url = options.fetch(:unitfile_url, 'https://github.com/dfarrell07/opendaylight-systemd/archive/master/opendaylight-unitfile.tar.gz')
   osfamily = options.fetch(:osfamily, 'RedHat')
-  rpm_repo = options.fetch(:rpm_repo, 'opendaylight-4-release')
+  rpm_repo = options.fetch(:rpm_repo, 'opendaylight-5-testing')
 
   # Confirm presence of tarball-related resources
   it { should contain_archive('opendaylight') }
@@ -362,7 +362,7 @@ end
 
 def rpm_install_tests(options = {})
   # Extract params
-  rpm_repo = options.fetch(:rpm_repo, 'opendaylight-4-release')
+  rpm_repo = options.fetch(:rpm_repo, 'opendaylight-5-testing')
 
   # Default to CentOS 7 Yum repo URL
 
@@ -396,7 +396,7 @@ end
 def unsupported_os_tests(options = {})
   # Extract params
   expected_msg = options.fetch(:expected_msg)
-  rpm_repo = options.fetch(:rpm_repo, 'opendaylight-4-release')
+  rpm_repo = options.fetch(:rpm_repo, 'opendaylight-5-testing')
 
   # Confirm that classes fail on unsupported OSs
   it { expect { should contain_class('opendaylight') }.to raise_error(Puppet::Error, /#{expected_msg}/) }