Skip to content
This repository has been archived by the owner on Dec 2, 2020. It is now read-only.

Commit

Permalink
Update to 5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mtakezawa committed Oct 29, 2014
1 parent b43cb7d commit 6ff64d2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions manifests/chrome.pp
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
ensure => directory,
path => $chrome_dir,
mode => '0755',
require => [Package['Chrome'],Package['1Password 4']];
require => [Package['Chrome'],Package['1Password 5']];
}

file { 'onepassword_chrome_extension':
ensure => present,
path => "${chrome_dir}/gkndfifopckmhdkohjeoljlbfnjhekfg.json",
source => 'puppet:///modules/onepassword/chrome.json',
mode => '0644',
require => [Package['Chrome'],Package['1Password 4'],File['chrome_extensions_dir']];
require => [Package['Chrome'],Package['1Password 5'],File['chrome_extensions_dir']];
}

}
4 changes: 2 additions & 2 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
# include 1password
class onepassword {
$host = 'd13itkw33a7sus.cloudfront.net'
$path = 'dist/1P/mac4/1Password-4.4.3.zip'
$path = 'dist/1P/mac4/1Password-5.0.1.zip'

package { '1Password 4':
package { '1Password 5':
source => "https://${host}/${path}",
provider => 'compressed_app'
}
Expand Down
2 changes: 1 addition & 1 deletion spec/classes/onepassword_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
describe 'onepassword' do

it do
should contain_package('1Password 4').with({
should contain_package('1Password 5').with({
:provider => 'compressed_app',
})
end
Expand Down

0 comments on commit 6ff64d2

Please sign in to comment.