mirror of
https://github.com/octoleo/syncthing.git
synced 2025-02-13 09:08:42 +00:00
To keep it out of the way for actual, real, Debian packagers GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3195
7 lines
102 B
Bash
Executable File
7 lines
102 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
if [[ ${1:-} == configure ]]; then
|
|
pkill -HUP -x syncthing || true
|
|
fi
|