From fed929f1d2cd48fe768a2fa6526d34a55bd1c7e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikl=C3=B3s=20Fazekas?= Date: Mon, 15 Mar 2021 12:31:09 +0100 Subject: check sshd pid --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9d1896..904afa4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,6 +55,10 @@ jobs: sudo echo "127.0.0.1 gateway.netssh" | sudo tee -a /etc/hosts - name: Check sshd_config run: sudo cat '/etc/ssh/sshd_config' || true + - name: Check sshd_config2 + run: sudo cat /etc/ssh/sshd_config.d/*.conf || true + - name: Check sshd pid + run: sudo ps aux | grep sshd - name: Ansible install run: | python -m pip install --upgrade pip @@ -67,6 +71,10 @@ jobs: ansible-playbook ./test/integration/playbook.yml -i "localhost," --become -c local -e 'no_rvm=true' -e 'myuser=runner' -e 'mygroup=runner' -e 'homedir=/home/runner' - name: Check sshd_config run: sudo cat '/etc/ssh/sshd_config' || true + - name: Check sshd pid + run: sudo ps aux | grep sshd + - name: Check sshd_config2 + run: sudo cat /etc/ssh/sshd_config.d/*.conf || true - name: Run Tests run: bundle exec ruby test/integration/test_forward.rb -n test_server_eof_should_be_handled_remote env: -- cgit v1.2.1