summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMiklós Fazekas <mfazekas@szemafor.com>2021-03-15 12:31:09 +0100
committerMiklós Fazekas <mfazekas@szemafor.com>2021-08-04 08:06:20 +0200
commitfed929f1d2cd48fe768a2fa6526d34a55bd1c7e9 (patch)
treedeb50d4af6ad33ce0cdc2bc635cab8b09513106f /.github
parent733085e3c0801ac4b8d247cab22f7abd8b84382c (diff)
downloadnet-ssh-fed929f1d2cd48fe768a2fa6526d34a55bd1c7e9.tar.gz
check sshd pid
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 8 insertions, 0 deletions
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: