Skip to content

Commit 818af96

Browse files
committed
modulesync 3.0.0
1 parent 1846061 commit 818af96

16 files changed

+34
-26
lines changed

.github/SECURITY.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Vox Pupuli Security Policy
2+
3+
Our vulnerabilities reporting process is at https://voxpupuli.org/security/

.msync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
modulesync_config_version: '2.12.0'
1+
modulesync_config_version: '3.0.0'

.rubocop.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,9 @@ RSpec/RepeatedDescription:
528528
RSpec/NestedGroups:
529529
Enabled: False
530530

531+
RSpec/MultipleExpectations:
532+
Enabled: false
533+
531534
# this is broken on ruby1.9
532535
Layout/IndentHeredoc:
533536
Enabled: False

.sync.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ Gemfile:
1313
- gem: 'zabbixapi'
1414
spec/spec_helper.rb:
1515
mock_with: ':mocha'
16+
spec/spec_helper_acceptance.rb:
17+
unmanaged: false

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
os: linux
23
dist: bionic
34
language: ruby
45
cache: bundler
@@ -7,7 +8,7 @@ before_install:
78
- bundle --version
89
script:
910
- 'bundle exec rake $CHECK'
10-
matrix:
11+
jobs:
1112
fast_finish: true
1213
include:
1314
- rvm: 2.4.4
@@ -68,7 +69,7 @@ notifications:
6869
- "chat.freenode.org#voxpupuli-notifications"
6970
deploy:
7071
provider: puppetforge
71-
user: puppet
72+
username: puppet
7273
password:
7374
secure: "ijm7hKPYWr1eg7151g5oK6MzZL4ojrgWjKlxgoBHXAdXdY88opMgvixfSJK5IMUbtanPfWRkqqABx+MYO78nfQBWDlghUzZ8sQXFeO2Ie0PgWl4nFV0kKWz+ejVaZC4dKSZlWha5pO1ek+sx7KnjIBZY82OXs/GXbjwhHx6d56YugXLuCyvfFxC7mXC9wF58bPwcYRCBSZt9CRl0OMBAFybxjdwsFMloRRhdz7f3hhlqF8Nrs1sxG1HhgiMcnrZqovNfb3Tw9K1RPYATazXxQrjcI7YHvJx0AvtHFUsn+/A0GtpKUuuPbaVdkYgE1Tye0AsAcey6RW4xhJywZglKrzDk7vfyUiU5CObeLh4/dhub3k111rDPL8v6v9t40fteduJoFLziHotQwdl37UALL7PwWZY5HuJvaBqHY2LsGs/ptGMB9ZCzxA85jfDw8lrZQ7P97SAoC34Ihs8D6vkKT9HUKHIXh19O5AAa70jReru0ej179IBjvs8m9nDwDNdY3sIsdhUU8WQ3BftDF6M8OzvgyLKDvjSs1Izag+Asl2Ze7RAQfQ2RvbfkDm9KEFnDQtXtzF4Cu1Ed6io2j1zI71JFQpIf6zb1qeNrhqulbJ15owGkQmHBgD8K+bDd1CCU4kA26axypV00XDsjfwdtFHgtUO3AlUVUim0QTMk9ATc="
7475
on:

Gemfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,11 @@ def location_for(place, fake_version = nil)
1111
end
1212

1313
group :test do
14-
gem 'voxpupuli-test', '>= 1.0.0', :require => false
15-
gem 'coveralls', :require => false
16-
gem 'simplecov-console', :require => false
17-
gem 'fakefs', :require => false
18-
gem 'zabbixapi', :require => false
19-
gem 'rspec-puppet-facts', :require => false, :git => 'https://github.com/mcanevet/rspec-puppet-facts', :ref => '9541292d4fc35db3be1badace673c1108154b571'
14+
gem 'voxpupuli-test', '~> 2.0', :require => false
15+
gem 'coveralls', :require => false
16+
gem 'simplecov-console', :require => false
17+
gem 'fakefs', :require => false
18+
gem 'zabbixapi', :require => false
2019
end
2120

2221
group :development do

spec/acceptance/agent_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class { 'zabbix::agent':
1717
}
1818
EOS
1919

20-
cleanup_zabbix
20+
prepare_host
2121

2222
# Run it twice and test for idempotency
2323
apply_manifest(pp, catch_failures: true)

spec/acceptance/server_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class { 'zabbix::database': } ->
2020
class { 'zabbix::server': }
2121
EOS
2222

23-
cleanup_zabbix
23+
prepare_host
2424

2525
# Run it twice and test for idempotency
2626
apply_manifest(pp, catch_failures: true)

spec/acceptance/zabbix_application_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class { 'zabbix':
3838
# setup zabbix. Apache module isn't idempotent and requires a second run
3939
it 'works with no error on the first apply' do
4040
# Cleanup old database
41-
cleanup_zabbix
41+
prepare_host
4242

4343
apply_manifest(pp1, catch_failures: true)
4444
end

spec/acceptance/zabbix_host_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class { 'zabbix':
3131
# setup zabbix. Apache module isn't idempotent and requires a second run
3232
it 'works with no error on the first apply' do
3333
# Cleanup old database
34-
cleanup_zabbix
34+
prepare_host
3535

3636
apply_manifest(pp1, catch_failures: true)
3737
end

0 commit comments

Comments
 (0)