Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
set:
- "el8"
- "el9"
- "el10"
- "debian-11"
- "debian-12"
- "ubuntu-2004"
Expand Down
3 changes: 3 additions & 0 deletions .sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@
set:
- el8
- el9
- el10
- debian-11
- debian-12
- ubuntu-2004
- ubuntu-2204
- ubuntu-2404
puppet:
- puppet7
- puppet8
Expand Down
34 changes: 34 additions & 0 deletions data/os/RedHat/10.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
ssh::config_files:
'50-redhat':
lines:
Match: 'final all'
Include: '/etc/crypto-policies/back-ends/openssh.config'
GSSAPIAuthentication: 'yes'
ForwardX11Trusted: 'yes'
ssh::packages:
- 'openssh-clients'
ssh::server::packages:
- 'openssh-server'

ssh::include: '/etc/ssh/ssh_config.d/*.conf'

ssh::server::authorized_keys_file:
- '.ssh/authorized_keys'

# NOTE: UsePAM: no, is not supported under EL10
ssh::server::config_files:
'40-redhat-crypto-policies':
lines:
Include: '/etc/crypto-policies/back-ends/opensshserver.config'
'50-redhat':
lines:
SyslogFacility: 'AUTHPRIV'
ChallengeResponseAuthentication: 'no'
GSSAPIAuthentication: 'yes'
GSSAPICleanupCredentials: 'no'
UsePAM: 'yes'
X11Forwarding: 'yes'
PrintMotd: 'no'
ssh::server::include: '/etc/ssh/sshd_config.d/*.conf'
ssh::server::subsystem: 'sftp /usr/libexec/openssh/sftp-server'
9 changes: 6 additions & 3 deletions metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
"operatingsystem": "AlmaLinux",
"operatingsystemrelease": [
"8",
"9"
"9",
"10"
]
},
{
Expand All @@ -59,14 +60,16 @@
"operatingsystemrelease": [
"7",
"8",
"9"
"9",
"10"
]
},
{
"operatingsystem": "Rocky",
"operatingsystemrelease": [
"8",
"9"
"9",
"10"
]
},
{
Expand Down
25 changes: 25 additions & 0 deletions spec/acceptance/nodesets/el10.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
HOSTS:
el10:
roles:
- agent
platform: el-10-x86_64
hypervisor: docker
image: almalinux:10
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: 'ssh-el10'
CONFIG:
log_level: debug
type: foss
ssh:
password: root
auth_methods: ["password"]