-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop EOL operating systems
- Loading branch information
Showing
12 changed files
with
111 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 8 additions & 5 deletions
13
spec/acceptance/nodesets/rocky-8.yml → spec/acceptance/nodesets/el8.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
HOSTS: | ||
rocky-8: | ||
el8: | ||
roles: | ||
- agent | ||
platform: el-8-x86_64 | ||
hypervisor: docker | ||
image: rockylinux/rockylinux:8 | ||
image: almalinux:8 | ||
docker_preserve_image: true | ||
docker_cmd: | ||
- '/usr/sbin/init' | ||
docker_image_commands: | ||
- 'yum install -y dnf-utils' | ||
- 'dnf install -y dnf-utils' | ||
- 'dnf config-manager --set-enabled powertools' | ||
- 'yum install -y wget which cronie iproute initscripts' | ||
- 'dnf install -y wget which cronie iproute initscripts' | ||
docker_env: | ||
- LANG=en_US.UTF-8 | ||
- LANGUAGE=en_US.UTF-8 | ||
- LC_ALL=en_US.UTF-8 | ||
docker_container_name: 'pam-el8' | ||
CONFIG: | ||
log_level: debug | ||
type: foss | ||
ssh: | ||
password: root | ||
auth_methods: ["password"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
HOSTS: | ||
el9: | ||
roles: | ||
- agent | ||
platform: el-9-x86_64 | ||
hypervisor: docker | ||
image: almalinux:9 | ||
docker_preserve_image: true | ||
docker_cmd: | ||
- '/usr/sbin/init' | ||
docker_image_commands: | ||
- 'dnf install -y dnf-utils' | ||
- 'dnf config-manager --set-enabled crb' | ||
- 'dnf install -y wget which cronie iproute initscripts' | ||
docker_env: | ||
- LANG=en_US.UTF-8 | ||
- LANGUAGE=en_US.UTF-8 | ||
- LC_ALL=en_US.UTF-8 | ||
docker_container_name: 'pam-el9' | ||
CONFIG: | ||
log_level: debug | ||
type: foss | ||
ssh: | ||
password: root | ||
auth_methods: ["password"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 9 additions & 6 deletions
15
spec/acceptance/nodesets/ubuntu-1804.yml → spec/acceptance/nodesets/ubuntu-2204.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,24 @@ | ||
HOSTS: | ||
ubuntu1804: | ||
ubuntu2204: | ||
roles: | ||
- agent | ||
platform: ubuntu-18.04-amd64 | ||
platform: ubuntu-22.04-amd64 | ||
hypervisor : docker | ||
image: ubuntu:18.04 | ||
image: ubuntu:22.04 | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- "rm -f /etc/dpkg/dpkg.cfg.d/excludes" | ||
- 'apt-get install -y wget net-tools locales apt-transport-https ca-certificates' | ||
- 'apt-get install -y wget net-tools iproute2 locales apt-transport-https ca-certificates' | ||
- 'locale-gen en_US.UTF-8' | ||
docker_container_name: 'pam-ubuntu1804' | ||
docker_env: | ||
- LANG=en_US.UTF-8 | ||
- LANGUAGE=en_US.UTF-8 | ||
- LC_ALL=en_US.UTF-8 | ||
docker_container_name: 'pam-ubuntu2204' | ||
CONFIG: | ||
log_level: debug | ||
type: foss | ||
ssh: | ||
password: root | ||
auth_methods: ["password"] | ||
|
Oops, something went wrong.