Skip to content

Commit

Permalink
Merge pull request #159 from Dan33l/vcs_certbot_version
Browse files Browse the repository at this point in the history
vcs method, bump version of certbot to v0.30.0
  • Loading branch information
Dan33l authored Jan 14, 2019
2 parents d03aeb5 + 32b902b commit 92258c6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
$venv_path = '/opt/letsencrypt/.venv' # virtualenv path for vcs-installed letsencrypt
$repo = 'https://github.com/certbot/certbot.git'
$cron_scripts_path = "${facts['puppet_vardir']}/letsencrypt" # path for renewal scripts called by cron
$version = 'v0.9.3'
$version = 'v0.30.0'
$config = {
'server' => 'https://acme-v01.api.letsencrypt.org/directory',
}
Expand Down
4 changes: 2 additions & 2 deletions spec/classes/letsencrypt_install_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
manage_dependencies: true,
path: '/opt/letsencrypt',
repo: 'https://github.com/certbot/certbot.git',
version: 'v0.9.3',
version: 'v0.30.0',
package_name: 'letsencrypt'
}
end
Expand Down Expand Up @@ -64,7 +64,7 @@

it 'contains the correct resources' do
is_expected.to contain_vcsrepo('/opt/letsencrypt').with(source: 'https://github.com/certbot/certbot.git',
revision: 'v0.9.3')
revision: 'v0.30.0')
is_expected.to contain_package('python')
is_expected.to contain_package('git')

Expand Down
2 changes: 1 addition & 1 deletion spec/classes/letsencrypt_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
manage_install: true,
manage_dependencies: true,
repo: 'https://github.com/certbot/certbot.git',
version: 'v0.9.3').that_notifies('Exec[initialize letsencrypt]')
version: 'v0.30.0').that_notifies('Exec[initialize letsencrypt]')
is_expected.to contain_exec('initialize letsencrypt')
is_expected.to contain_class('letsencrypt::config').that_comes_before('Exec[initialize letsencrypt]')

Expand Down

0 comments on commit 92258c6

Please sign in to comment.