2018-04-15 15:28:05 -05:00
|
|
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
|
2018-05-07 11:39:42 -05:00
|
|
|
|
2021-10-12 06:33:44 -05:00
|
|
|
find /config ! -user peertube -exec chown peertube:peertube {} \; || true
|
2018-05-28 03:53:57 -05:00
|
|
|
|
2018-04-15 15:28:05 -05:00
|
|
|
# first arg is `-f` or `--some-option`
|
|
|
|
# or first arg is `something.conf`
|
|
|
|
if [ "${1#-}" != "$1" ] || [ "${1%.conf}" != "$1" ]; then
|
2018-04-16 11:44:57 -05:00
|
|
|
set -- npm "$@"
|
2018-04-15 15:28:05 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
# allow the container to be started with `--user`
|
2018-04-16 12:03:56 -05:00
|
|
|
if [ "$1" = 'npm' -a "$(id -u)" = '0' ]; then
|
2019-01-13 07:21:58 -06:00
|
|
|
find /data ! -user peertube -exec chown peertube:peertube {} \;
|
2018-04-16 11:44:57 -05:00
|
|
|
exec gosu peertube "$0" "$@"
|
2018-04-15 15:28:05 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
exec "$@"
|