summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklós Fazekas <mfazekas@szemafor.com>2021-03-15 12:22:30 +0100
committerMiklós Fazekas <mfazekas@szemafor.com>2021-08-04 08:06:20 +0200
commit733085e3c0801ac4b8d247cab22f7abd8b84382c (patch)
tree0eac544a6a4d92848bbd823a80423fe373231bf2
parent15032fd3d4fdb7786b681f0622af96a36db13b2e (diff)
downloadnet-ssh-733085e3c0801ac4b8d247cab22f7abd8b84382c.tar.gz
Check GatewayPorts
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index fde69ea..d9d1896 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -53,6 +53,8 @@ jobs:
- name: Add to etc/hosts
run: |
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: Ansible install
run: |
python -m pip install --upgrade pip
@@ -63,6 +65,8 @@ jobs:
export
who am i
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: Run Tests
run: bundle exec ruby test/integration/test_forward.rb -n test_server_eof_should_be_handled_remote
env: