From f1ade7a89d349fbb09a3919b5f055fc50a3c9d32 Mon Sep 17 00:00:00 2001 From: Pete Cheslock Date: Mon, 23 Feb 2015 11:49:51 -0500 Subject: [PATCH] Fix the tests --- Berksfile.lock | 2 +- metadata.rb | 2 +- spec/repo_spec.rb | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Berksfile.lock b/Berksfile.lock index 82cdb9b..a70f072 100644 --- a/Berksfile.lock +++ b/Berksfile.lock @@ -7,7 +7,7 @@ DEPENDENCIES GRAPH apt (2.6.1) - threatstack (1.2.0) + threatstack (1.2.1) apt (>= 0.0.0) yum (>= 0.0.0) yum (3.5.3) diff --git a/metadata.rb b/metadata.rb index 15d8ad3..61e8410 100644 --- a/metadata.rb +++ b/metadata.rb @@ -4,7 +4,7 @@ license 'Apache 2.0' description 'Installs/Configures Threat Stack cloudsight components' long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) -version '1.2.0' +version '1.2.1' supports 'amazon' supports 'centos' diff --git a/spec/repo_spec.rb b/spec/repo_spec.rb index 6224cb4..1994e0d 100644 --- a/spec/repo_spec.rb +++ b/spec/repo_spec.rb @@ -15,7 +15,7 @@ uri: 'https://pkg.threatstack.com/Ubuntu', distribution: 'lucid', components: ['main'], - key: 'https://www.threatstack.com/APT-GPG-KEY-THREATSTACK', + key: 'https://app.threatstack.com/APT-GPG-KEY-THREATSTACK', ) end end @@ -34,7 +34,7 @@ uri: 'https://pkg.threatstack.com/Ubuntu', distribution: 'precise', components: ['main'], - key: 'https://www.threatstack.com/APT-GPG-KEY-THREATSTACK', + key: 'https://app.threatstack.com/APT-GPG-KEY-THREATSTACK', ) end end @@ -53,7 +53,7 @@ uri: 'https://pkg.threatstack.com/Ubuntu', distribution: 'trusty', components: ['main'], - key: 'https://www.threatstack.com/APT-GPG-KEY-THREATSTACK', + key: 'https://app.threatstack.com/APT-GPG-KEY-THREATSTACK', ) end end @@ -71,7 +71,7 @@ expect(chef_run).to add_yum_repository('threatstack').with( description: 'Threat Stack', baseurl: 'https://pkg.threatstack.com/CentOS', - gpgkey: 'https://www.threatstack.com/RPM-GPG-KEY-THREATSTACK', + gpgkey: 'https://app.threatstack.com/RPM-GPG-KEY-THREATSTACK', ) end end @@ -89,7 +89,7 @@ expect(chef_run).to add_yum_repository('threatstack').with( description: 'Threat Stack', baseurl: 'https://pkg.threatstack.com/CentOS', - gpgkey: 'https://www.threatstack.com/RPM-GPG-KEY-THREATSTACK', + gpgkey: 'https://app.threatstack.com/RPM-GPG-KEY-THREATSTACK', ) end end @@ -107,7 +107,7 @@ expect(chef_run).to add_yum_repository('threatstack').with( description: 'Threat Stack', baseurl: 'https://pkg.threatstack.com/Amazon', - gpgkey: 'https://www.threatstack.com/RPM-GPG-KEY-THREATSTACK', + gpgkey: 'https://app.threatstack.com/RPM-GPG-KEY-THREATSTACK', ) end end