mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 15:20:56 +00:00
9 lines
155 B
Bash
9 lines
155 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
chown "${PUID}:${PGID}" /var/syncthing \
|
||
|
&& exec su-exec "${PUID}:${PGID}" \
|
||
|
env HOME=/var/syncthing \
|
||
|
/bin/syncthing "$@"
|