20 lines
461 B
Plaintext
Executable File
20 lines
461 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
||
|
||
# make our folder
|
||
mkdir -p /config/qBittorrent
|
||
|
||
# copy default config
|
||
[[ ! -e /config/qBittorrent/qBittorrent.conf ]] && \
|
||
cp /defaults/qBittorrent.conf /config/qBittorrent/qBittorrent.conf
|
||
|
||
# chown download directory if currently not set to abc
|
||
if [[ -d /downloads ]]; then
|
||
if [[ "$(stat -c '%U' /downloads)" != "abc" ]]; then
|
||
chown -R abc:abc /downloads
|
||
fi
|
||
fi
|
||
|
||
# permissions
|
||
chown -R abc:abc \
|
||
/config
|