mirror of
https://github.com/octoleo/syncthing.git
synced 2025-01-22 22:58:25 +00:00
7 lines
102 B
Plaintext
7 lines
102 B
Plaintext
|
#!/bin/bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
if [[ ${1:-} == configure ]]; then
|
||
|
pkill -x -HUP syncthing || true
|
||
|
fi
|