Commit 61bf936 1 parent 574395c commit 61bf936 Copy full SHA for 61bf936
File tree 5 files changed +21
-21
lines changed
integration/default/disabled
5 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ provisioner:
18
18
platforms :
19
19
- name : windows
20
20
driver_config :
21
- image : mcr.microsoft.com/windows/servercore:1809
21
+ image : mcr.microsoft.com/windows/servercore:ltsc2022
22
22
platform : windows
23
23
24
24
suites :
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ suites:
40
40
driver :
41
41
build_context : false
42
42
- name : capabilities
43
- includes : [debian-11 , ubuntu-18 .04, ubuntu-20 .04]
43
+ includes : [debian-12 , ubuntu-22 .04, ubuntu-24 .04]
44
44
driver :
45
45
provision_command :
46
46
- curl -L https://www.chef.io/chef/install.sh | bash
Original file line number Diff line number Diff line change 11
11
# See the License for the specific language governing permissions and
12
12
# limitations under the License.
13
13
14
- begin
15
- require "docker"
16
-
17
- # Override API_VERSION constant in docker-api gem to use version 1.24 of the Docker API
18
- # This override is for the docker-api gem to communicate to the Docker engine on Windows
19
- module Docker
20
- VERSION = "0.0.0" . freeze
21
- API_VERSION = "1.24" . freeze
22
- end
23
- rescue LoadError => e
24
- logger . debug ( "[Docker] docker-api gem not found for InSpec verifier. #{ e } " )
25
- end
14
+ # begin
15
+ # require "docker"
16
+ #
17
+ # # Override API_VERSION constant in docker-api gem to use version 1.24 of the Docker API
18
+ # # This override is for the docker-api gem to communicate to the Docker engine on Windows
19
+ # module Docker
20
+ # VERSION = "0.0.0".freeze
21
+ # API_VERSION = "1.24".freeze
22
+ # end
23
+ # rescue LoadError => e
24
+ # logger.debug("[Docker] docker-api gem not found for InSpec verifier. #{e}")
25
+ # end
Original file line number Diff line number Diff line change 1
- FROM centos :7
1
+ FROM almalinux :7
2
2
RUN yum clean all
3
3
RUN yum install -y sudo openssh-server openssh-clients which curl htop
4
4
RUN ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key
Original file line number Diff line number Diff line change 14
14
# limitations under the License.
15
15
#
16
16
17
- # Disable now busser-serever is gone.
18
- # require 'serverspec'
19
- # require 'spec_helper'
17
+ # Disable now busser-server is gone.
18
+ require 'serverspec'
19
+ require 'spec_helper'
20
20
21
21
# # Just make sure the image launched and is reachable.
22
- # describe command('true') do
23
- # its(:exit_status) { is_expected.to eq 0 }
24
- # end
22
+ describe command ( 'true' ) do
23
+ its ( :exit_status ) { is_expected . to eq 0 }
24
+ end
You can’t perform that action at this time.
0 commit comments