-
Notifications
You must be signed in to change notification settings - Fork 198
add support for CentOS8 #309
Conversation
Adds testing environments for CentOS8 to local Kitchen and remote Travis tests. Currently only local Kitchen Docker tests are verified. Signed-off-by: Martin Schurz <[email protected]>
@rndmh3ro I think the broken tests are a problem of ssh-baseline. I will submit a merge request there |
by default sshd will not use the crypto settings from sshd_config. To make the settings effective we need to disable the system wide CRYPTO_POLICY. see: https://access.redhat.com/solutions/4410591 Signed-off-by: Martin Schurz <[email protected]>
Signed-off-by: Martin Schurz <[email protected]>
Signed-off-by: Martin Schurz <[email protected]>
well, I'm at a loss as to why this does not work in travis |
Are you sure that ssh is correctly installed in this particular config ? Travis complains that it does not find any Maybe, this config installs the ssh files in a different folder. What bother me is the failed handler that indicates ssh is not correctly installed or handled by |
I'm using the prebuild Docker Image from @rndmh3ro and this is also used in the local kitchen tests. The kitchen tests run fine and with no problem indication. So I'm asuming this is something in Travis CI, that blocks systemd. Especially the last problem with not startable sshd indicates, that systemd is not running correctly. |
Well, the mounting of the cgroups does not work (anymore) in travis. This PR should fix it: #310 for this branch. |
Signed-off-by: Sebastian Gumprich <[email protected]>
Travis fix
Adds testing environments for CentOS8 to local Kitchen and remote Travis
tests. Currently only local Kitchen Docker tests are verified.
Signed-off-by: Martin Schurz [email protected]