fix(pkill): use the correct command flag

This commit is contained in:
Michele Cereda
2025-05-08 23:22:18 +02:00
parent dae84d24ec
commit 0d955dd854
4 changed files with 6 additions and 6 deletions

View File

@@ -45,7 +45,7 @@ gitlab-runner exec docker \
# Force a configuration file reload.
sudo kill -HUP $(pidof 'gitlab-runner')
sudo pkill --signal 'SIGHUP' 'gitlab-runner'
sudo pkill -HUP 'gitlab-runner'
```
</details>