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