Skip to content

Commit 915e4b5

Browse files
committed
modulesync 2.3.1
1 parent 07003d6 commit 915e4b5

22 files changed

+83
-263
lines changed

.editorconfig

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# editorconfig.org
2+
3+
# MANAGED BY MODULESYNC
4+
5+
root = true
6+
7+
[*]
8+
charset = utf-8
9+
end_of_line = lf
10+
indent_size = 2
11+
tab_width = 2
12+
indent_style = space
13+
insert_final_newline = true
14+
trim_trailing_whitespace = true

.github/CONTRIBUTING.md

+15
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,21 @@ To run a specific spec test set the `SPEC` variable:
109109
bundle exec rake spec SPEC=spec/foo_spec.rb
110110
```
111111

112+
### Unit tests in docker
113+
114+
Some people don't want to run the dependencies locally or don't want to install
115+
ruby. We ship a Dockerfile that enables you to run all unit tests and linting.
116+
You only need to run:
117+
118+
```sh
119+
docker build .
120+
```
121+
122+
Please ensure that a docker daemon is running and that your user has the
123+
permission to talk to it. You can specify a remote docker host by setting the
124+
`DOCKER_HOST` environment variable. it will copy the content of the module into
125+
the docker image. So it will not work if a Gemfile.lock exists.
126+
112127
## Integration tests
113128

114129
The unit tests just check the code runs, not that it does exactly what

.msync.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
modulesync_config_version: '2.2.0'
1+
modulesync_config_version: '2.3.1'

.pmtignore

+1
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ Puppetfile.lock
1818
*.iml
1919
.*.sw?
2020
.yardoc/
21+
Dockerfile

.travis.yml

+27-27
Original file line numberDiff line numberDiff line change
@@ -28,189 +28,189 @@ matrix:
2828
- rvm: 2.5.1
2929
bundler_args: --without development release
3030
dist: trusty
31-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=ubuntu1604-64{hypervisor=docker} CHECK=beaker
31+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=ubuntu1604-64 BEAKER_HYPERVISOR=docker CHECK=beaker
3232
script: bundle exec rspec spec/acceptance/php56_spec.rb
3333
services: docker
3434
sudo: required
3535
- rvm: 2.5.1
3636
bundler_args: --without development release
3737
dist: trusty
38-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=ubuntu1604-64{hypervisor=docker} CHECK=beaker
38+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=ubuntu1604-64 BEAKER_HYPERVISOR=docker CHECK=beaker
3939
script: bundle exec rspec spec/acceptance/php56_spec.rb
4040
services: docker
4141
sudo: required
4242
- rvm: 2.5.1
4343
bundler_args: --without development release
4444
dist: trusty
45-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=ubuntu1604-64{hypervisor=docker} CHECK=beaker
45+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=ubuntu1604-64 BEAKER_HYPERVISOR=docker CHECK=beaker
4646
script: bundle exec rspec spec/acceptance/php56_spec.rb
4747
services: docker
4848
sudo: required
4949
- rvm: 2.5.1
5050
bundler_args: --without development release
5151
dist: trusty
52-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=ubuntu1404-64{hypervisor=docker} CHECK=beaker
52+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=ubuntu1404-64 BEAKER_HYPERVISOR=docker CHECK=beaker
5353
script: bundle exec rspec spec/acceptance/php56_spec.rb
5454
services: docker
5555
sudo: required
5656
- rvm: 2.5.1
5757
bundler_args: --without development release
5858
dist: trusty
59-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=ubuntu1404-64{hypervisor=docker} CHECK=beaker
59+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=ubuntu1404-64 BEAKER_HYPERVISOR=docker CHECK=beaker
6060
script: bundle exec rspec spec/acceptance/php56_spec.rb
6161
services: docker
6262
sudo: required
6363
- rvm: 2.5.1
6464
bundler_args: --without development release
6565
dist: trusty
66-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=ubuntu1404-64{hypervisor=docker} CHECK=beaker
66+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=ubuntu1404-64 BEAKER_HYPERVISOR=docker CHECK=beaker
6767
script: bundle exec rspec spec/acceptance/php56_spec.rb
6868
services: docker
6969
sudo: required
7070
- rvm: 2.5.1
7171
bundler_args: --without development release
7272
dist: trusty
73-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=centos7-64{hypervisor=docker} CHECK=beaker
73+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=centos7-64 BEAKER_HYPERVISOR=docker CHECK=beaker
7474
script: bundle exec rspec spec/acceptance/php56_spec.rb
7575
services: docker
7676
sudo: required
7777
- rvm: 2.5.1
7878
bundler_args: --without development release
7979
dist: trusty
80-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=centos7-64{hypervisor=docker} CHECK=beaker
80+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=centos7-64 BEAKER_HYPERVISOR=docker CHECK=beaker
8181
script: bundle exec rspec spec/acceptance/php56_spec.rb
8282
services: docker
8383
sudo: required
8484
- rvm: 2.5.1
8585
bundler_args: --without development release
8686
dist: trusty
87-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=centos7-64{hypervisor=docker} CHECK=beaker
87+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=centos7-64 BEAKER_HYPERVISOR=docker CHECK=beaker
8888
script: bundle exec rspec spec/acceptance/php56_spec.rb
8989
services: docker
9090
sudo: required
9191
- rvm: 2.5.1
9292
bundler_args: --without development release
9393
dist: trusty
94-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=ubuntu1804-64{hypervisor=docker} CHECK=beaker
94+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=ubuntu1804-64 BEAKER_HYPERVISOR=docker CHECK=beaker
9595
script: bundle exec rspec spec/acceptance/php_spec.rb
9696
services: docker
9797
sudo: required
9898
- rvm: 2.5.1
9999
bundler_args: --without development release
100100
dist: trusty
101-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=ubuntu1804-64{hypervisor=docker} CHECK=beaker
101+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=ubuntu1804-64 BEAKER_HYPERVISOR=docker CHECK=beaker
102102
script: bundle exec rspec spec/acceptance/php_spec.rb
103103
services: docker
104104
sudo: required
105105
- rvm: 2.5.1
106106
bundler_args: --without development release
107107
dist: trusty
108-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=ubuntu1804-64{hypervisor=docker} CHECK=beaker
108+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=ubuntu1804-64 BEAKER_HYPERVISOR=docker CHECK=beaker
109109
script: bundle exec rspec spec/acceptance/php_spec.rb
110110
services: docker
111111
sudo: required
112112
- rvm: 2.5.1
113113
bundler_args: --without development release
114114
dist: trusty
115-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=ubuntu1604-64{hypervisor=docker} CHECK=beaker
115+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=ubuntu1604-64 BEAKER_HYPERVISOR=docker CHECK=beaker
116116
script: bundle exec rspec spec/acceptance/php_spec.rb
117117
services: docker
118118
sudo: required
119119
- rvm: 2.5.1
120120
bundler_args: --without development release
121121
dist: trusty
122-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=ubuntu1604-64{hypervisor=docker} CHECK=beaker
122+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=ubuntu1604-64 BEAKER_HYPERVISOR=docker CHECK=beaker
123123
script: bundle exec rspec spec/acceptance/php_spec.rb
124124
services: docker
125125
sudo: required
126126
- rvm: 2.5.1
127127
bundler_args: --without development release
128128
dist: trusty
129-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=ubuntu1604-64{hypervisor=docker} CHECK=beaker
129+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=ubuntu1604-64 BEAKER_HYPERVISOR=docker CHECK=beaker
130130
script: bundle exec rspec spec/acceptance/php_spec.rb
131131
services: docker
132132
sudo: required
133133
- rvm: 2.5.1
134134
bundler_args: --without development release
135135
dist: trusty
136-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=ubuntu1404-64{hypervisor=docker} CHECK=beaker
136+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=ubuntu1404-64 BEAKER_HYPERVISOR=docker CHECK=beaker
137137
script: bundle exec rspec spec/acceptance/php_spec.rb
138138
services: docker
139139
sudo: required
140140
- rvm: 2.5.1
141141
bundler_args: --without development release
142142
dist: trusty
143-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=ubuntu1404-64{hypervisor=docker} CHECK=beaker
143+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=ubuntu1404-64 BEAKER_HYPERVISOR=docker CHECK=beaker
144144
script: bundle exec rspec spec/acceptance/php_spec.rb
145145
services: docker
146146
sudo: required
147147
- rvm: 2.5.1
148148
bundler_args: --without development release
149149
dist: trusty
150-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=ubuntu1404-64{hypervisor=docker} CHECK=beaker
150+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=ubuntu1404-64 BEAKER_HYPERVISOR=docker CHECK=beaker
151151
script: bundle exec rspec spec/acceptance/php_spec.rb
152152
services: docker
153153
sudo: required
154154
- rvm: 2.5.1
155155
bundler_args: --without development release
156156
dist: trusty
157-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=centos7-64{hypervisor=docker} CHECK=beaker
157+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=centos7-64 BEAKER_HYPERVISOR=docker CHECK=beaker
158158
script: bundle exec rspec spec/acceptance/php_spec.rb
159159
services: docker
160160
sudo: required
161161
- rvm: 2.5.1
162162
bundler_args: --without development release
163163
dist: trusty
164-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=centos7-64{hypervisor=docker} CHECK=beaker
164+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=centos7-64 BEAKER_HYPERVISOR=docker CHECK=beaker
165165
script: bundle exec rspec spec/acceptance/php_spec.rb
166166
services: docker
167167
sudo: required
168168
- rvm: 2.5.1
169169
bundler_args: --without development release
170170
dist: trusty
171-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=centos7-64{hypervisor=docker} CHECK=beaker
171+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=centos7-64 BEAKER_HYPERVISOR=docker CHECK=beaker
172172
script: bundle exec rspec spec/acceptance/php_spec.rb
173173
services: docker
174174
sudo: required
175175
- rvm: 2.5.1
176176
bundler_args: --without development release
177177
dist: trusty
178-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=debian9-64{hypervisor=docker} CHECK=beaker
178+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=debian9-64 BEAKER_HYPERVISOR=docker CHECK=beaker
179179
script: bundle exec rspec spec/acceptance/php_spec.rb
180180
services: docker
181181
sudo: required
182182
- rvm: 2.5.1
183183
bundler_args: --without development release
184184
dist: trusty
185-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=debian9-64{hypervisor=docker} CHECK=beaker
185+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=debian9-64 BEAKER_HYPERVISOR=docker CHECK=beaker
186186
script: bundle exec rspec spec/acceptance/php_spec.rb
187187
services: docker
188188
sudo: required
189189
- rvm: 2.5.1
190190
bundler_args: --without development release
191191
dist: trusty
192-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=debian9-64{hypervisor=docker} CHECK=beaker
192+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=debian9-64 BEAKER_HYPERVISOR=docker CHECK=beaker
193193
script: bundle exec rspec spec/acceptance/php_spec.rb
194194
services: docker
195195
sudo: required
196196
- rvm: 2.5.1
197197
bundler_args: --without development release
198198
dist: trusty
199-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=debian8-64{hypervisor=docker} CHECK=beaker
199+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=debian8-64 BEAKER_HYPERVISOR=docker CHECK=beaker
200200
script: bundle exec rspec spec/acceptance/php_spec.rb
201201
services: docker
202202
sudo: required
203203
- rvm: 2.5.1
204204
bundler_args: --without development release
205205
dist: trusty
206-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=debian8-64{hypervisor=docker} CHECK=beaker
206+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=debian8-64 BEAKER_HYPERVISOR=docker CHECK=beaker
207207
script: bundle exec rspec spec/acceptance/php_spec.rb
208208
services: docker
209209
sudo: required
210210
- rvm: 2.5.1
211211
bundler_args: --without development release
212212
dist: trusty
213-
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=debian8-64{hypervisor=docker} CHECK=beaker
213+
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6-nightly BEAKER_debug=true BEAKER_setfile=debian8-64 BEAKER_HYPERVISOR=docker CHECK=beaker
214214
script: bundle exec rspec spec/acceptance/php_spec.rb
215215
services: docker
216216
sudo: required

Dockerfile

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
FROM ruby:2.5.1
2+
3+
WORKDIR /opt/puppet
4+
5+
# https://github.com/puppetlabs/puppet/blob/06ad255754a38f22fb3a22c7c4f1e2ce453d01cb/lib/puppet/provider/service/runit.rb#L39
6+
RUN mkdir -p /etc/sv
7+
8+
ARG PUPPET_VERSION="~> 6.0"
9+
ARG PARALLEL_TEST_PROCESSORS=4
10+
11+
# Cache gems
12+
COPY Gemfile .
13+
RUN bundle install --without system_tests development release --path=${BUNDLE_PATH:-vendor/bundle}
14+
15+
COPY . .
16+
17+
RUN bundle install
18+
RUN bundle exec release_checks
19+
20+
# Container should not saved
21+
RUN exit 1

Gemfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ group :test do
2828
gem 'coveralls', :require => false
2929
gem 'simplecov-console', :require => false
3030
gem 'rack', '~> 1.0', :require => false if RUBY_VERSION < '2.2.2'
31-
gem 'parallel_tests', :require => false
31+
gem 'parallel_tests', '2.24.0', :require => false if RUBY_VERSION < '2.2.0'
32+
gem 'parallel_tests', :require => false if RUBY_VERSION >= '2.2.0'
3233
end
3334

3435
group :development do
@@ -43,15 +44,15 @@ group :system_tests do
4344
if beaker_version = ENV['BEAKER_VERSION']
4445
gem 'beaker', *location_for(beaker_version)
4546
else
46-
gem 'beaker', '>= 3.9.0', :require => false
47+
gem 'beaker', '>= 4.2.0', :require => false
4748
end
4849
if beaker_rspec_version = ENV['BEAKER_RSPEC_VERSION']
4950
gem 'beaker-rspec', *location_for(beaker_rspec_version)
5051
else
5152
gem 'beaker-rspec', :require => false
5253
end
5354
gem 'serverspec', :require => false
54-
gem 'beaker-hostgenerator', '>= 1.1.10', :require => false
55+
gem 'beaker-hostgenerator', '>= 1.1.22', :require => false
5556
gem 'beaker-docker', :require => false
5657
gem 'beaker-puppet', :require => false
5758
gem 'beaker-puppet_install_helper', :require => false

spec/acceptance/nodesets/centos-511-x64.yml

-15
This file was deleted.

spec/acceptance/nodesets/centos-6-x64.yml

-15
This file was deleted.

spec/acceptance/nodesets/centos-66-x64-pe.yml

-17
This file was deleted.

spec/acceptance/nodesets/centos-66-x64.yml

-15
This file was deleted.

spec/acceptance/nodesets/centos-7-x64.yml

-15
This file was deleted.

0 commit comments

Comments
 (0)