summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2024-06-19 15:09:05 +0200
committerDarren Tucker <dtucker@dtucker.net>2024-06-19 15:09:05 +0200
commit7089b5f8436ef0b8d3d3ad9ce01045fb9e7aab15 (patch)
treeff17900ca364c16b3f2a93bfd7dbfa33d383a87a /.github
parentNeed to supply "-f" to restart sshd. (diff)
downloadopenssh-7089b5f8436ef0b8d3d3ad9ce01045fb9e7aab15.tar.xz
openssh-7089b5f8436ef0b8d3d3ad9ce01045fb9e7aab15.zip
Move -f to the place needed to restart sshd.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/upstream.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/upstream.yml b/.github/workflows/upstream.yml
index ea3684c54..2ebdcf594 100644
--- a/.github/workflows/upstream.yml
+++ b/.github/workflows/upstream.yml
@@ -43,7 +43,7 @@ jobs:
- name: make
run: vmrun "cd /usr/src/usr.bin/ssh && case ${{ matrix.config }} in without-openssl) make OPENSSL=no;; ubsan) make DEBUG='-fsanitize-minimal-runtime -fsanitize=undefined';; *) make; esac"
- name: make install
- run: vmrun "cd /usr/src/usr.bin/ssh && sudo make install && sudo /etc/rc.d/sshd restart -f"
+ run: vmrun "cd /usr/src/usr.bin/ssh && sudo make install && sudo /etc/rc.d/sshd -f restart"
- name: make tests`
run: vmrun "cd /usr/src/regress/usr.bin/ssh && case ${{ matrix.config }} in without-openssl) make OPENSSL=no;; ubsan) make DEBUG='-fsanitize-minimal-runtime -fsanitize=undefined';; *) make; esac"
env: