beaker-docker 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/Gemfile +0 -18
- data/acceptance/config/nodes/hosts.yaml +1 -1
- data/lib/beaker/hypervisor/docker.rb +3 -3
- data/lib/beaker-docker/version.rb +1 -1
- data/spec/beaker/hypervisor/docker_spec.rb +3 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e150251ff135abf3518e13d04408904855a9dab3ef99c273303fad41949f9a52
|
|
4
|
+
data.tar.gz: b2a7e7e3d5453a482480c126992e24d2e29ed5d114d6f7b0434f4e739a2371e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17e521d8e979ccfd11f6d160382f2832a4ede66b21737a36f2bad734c237a79e886aecb63e253defcf7b589922536e9dbc901afb650297e10dff75c5eff77f66
|
|
7
|
+
data.tar.gz: 15de0c0498a3d2faccd6add7866ec1912e725947a0654e66ed470714abf3a007a877af38cb97909d7a086658d4d36188bfba7c103bb223a296563aa0d973b364
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.1](https://github.com/voxpupuli/beaker-docker/tree/1.1.1) (2022-02-11)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-docker/compare/1.1.0...1.1.1)
|
|
6
|
+
|
|
7
|
+
**Fixed bugs:**
|
|
8
|
+
|
|
9
|
+
- Arch Linux: do not install openssh twice [\#58](https://github.com/voxpupuli/beaker-docker/pull/58) ([bastelfreak](https://github.com/bastelfreak))
|
|
10
|
+
|
|
11
|
+
**Merged pull requests:**
|
|
12
|
+
|
|
13
|
+
- Remove beaker from Gemfile [\#62](https://github.com/voxpupuli/beaker-docker/pull/62) ([bastelfreak](https://github.com/bastelfreak))
|
|
14
|
+
- CI: Switch centos:8 to centos:stream8 image [\#61](https://github.com/voxpupuli/beaker-docker/pull/61) ([bastelfreak](https://github.com/bastelfreak))
|
|
15
|
+
|
|
3
16
|
## [1.1.0](https://github.com/voxpupuli/beaker-docker/tree/1.1.0) (2022-01-27)
|
|
4
17
|
|
|
5
18
|
[Full Changelog](https://github.com/voxpupuli/beaker-docker/compare/1.0.1...1.1.0)
|
|
@@ -8,6 +21,10 @@
|
|
|
8
21
|
|
|
9
22
|
- Use host\_packages helper to reuse logic from beaker [\#59](https://github.com/voxpupuli/beaker-docker/pull/59) ([ekohl](https://github.com/ekohl))
|
|
10
23
|
|
|
24
|
+
**Merged pull requests:**
|
|
25
|
+
|
|
26
|
+
- Release 1.1.0 [\#60](https://github.com/voxpupuli/beaker-docker/pull/60) ([ekohl](https://github.com/ekohl))
|
|
27
|
+
|
|
11
28
|
## [1.0.1](https://github.com/voxpupuli/beaker-docker/tree/1.0.1) (2021-09-13)
|
|
12
29
|
|
|
13
30
|
[Full Changelog](https://github.com/voxpupuli/beaker-docker/compare/1.0.0...1.0.1)
|
data/Gemfile
CHANGED
|
@@ -2,24 +2,6 @@ source ENV['GEM_SOURCE'] || 'https://rubygems.org'
|
|
|
2
2
|
|
|
3
3
|
gemspec
|
|
4
4
|
|
|
5
|
-
def location_for(place, fake_version = nil)
|
|
6
|
-
if place =~ /^git:([^#]*)#(.*)/
|
|
7
|
-
[fake_version, { :git => $1, :branch => $2, :require => false }].compact
|
|
8
|
-
elsif place =~ /^file:\/\/(.*)/
|
|
9
|
-
['>= 0', { :path => File.expand_path($1), :require => false }]
|
|
10
|
-
else
|
|
11
|
-
[place, { :require => false }]
|
|
12
|
-
end
|
|
13
|
-
end
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
# We don't put beaker in as a test dependency because we
|
|
17
|
-
# don't want to create a transitive dependency
|
|
18
|
-
group :acceptance_testing do
|
|
19
|
-
gem "beaker", *location_for(ENV['BEAKER_VERSION'] || '>= 4.30')
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
|
|
23
5
|
if File.exists? "#{__FILE__}.local"
|
|
24
6
|
eval(File.read("#{__FILE__}.local"), binding)
|
|
25
7
|
end
|
|
@@ -562,9 +562,9 @@ module Beaker
|
|
|
562
562
|
EOF
|
|
563
563
|
when /archlinux/
|
|
564
564
|
dockerfile += <<~EOF
|
|
565
|
-
RUN pacman --noconfirm
|
|
566
|
-
RUN pacman --noconfirm
|
|
567
|
-
RUN pacman
|
|
565
|
+
RUN pacman --sync --refresh --noconfirm archlinux-keyring
|
|
566
|
+
RUN pacman --sync --refresh --noconfirm --sysupgrade
|
|
567
|
+
RUN pacman --sync --noconfirm #{additional_packages.join(' ')}
|
|
568
568
|
RUN ssh-keygen -A
|
|
569
569
|
RUN sed -ri 's/^#?UsePAM .*/UsePAM no/' /etc/ssh/sshd_config
|
|
570
570
|
RUN systemctl enable sshd
|
|
@@ -751,7 +751,9 @@ module Beaker
|
|
|
751
751
|
'image' => 'foobar',
|
|
752
752
|
})
|
|
753
753
|
|
|
754
|
-
expect( dockerfile ).to
|
|
754
|
+
expect( dockerfile ).to match(/RUN pacman --sync --refresh --noconfirm archlinux-keyring/)
|
|
755
|
+
expect( dockerfile ).to match(/RUN pacman --sync --refresh --noconfirm --sysupgrade/)
|
|
756
|
+
expect( dockerfile ).to match(/RUN pacman --sync --noconfirm curl ntp net-tools openssh/)
|
|
755
757
|
end
|
|
756
758
|
end
|
|
757
759
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beaker-docker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vox Pupuli
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2022-
|
|
14
|
+
date: 2022-02-17 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: rspec
|