File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed
etc/s6-overlay/s6-rc.d/svc-beets Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 8888 requests \
8989 requests_oauthlib \
9090 typing-extensions \
91- unidecode && \
91+ unidecode \
92+ drop2beets && \
9293 printf "Linuxserver.io version: ${VERSION}\n Build-date: ${BUILD_DATE}" > /build_version && \
9394 echo "**** cleanup ****" && \
9495 apk del --purge \
@@ -103,6 +104,8 @@ ENV BEETSDIR="/config" \
103104EDITOR="nano" \
104105HOME="/config"
105106
107+ RUN mkdir /downloads #it freaked out without this :(
108+
106109# copy local files
107110COPY root/ /
108111
Original file line number Diff line number Diff line change 1- plugins : fetchart embedart convert scrub replaygain lastgenre chroma web
1+ plugins : fetchart embedart convert scrub replaygain lastgenre chroma web drop2beets
2+ drop2beets :
3+ dropbox_path : /downloads
24directory : /music
35library : /config/musiclibrary.blb
46art_filename : albumart
2123
2224import :
2325 write : yes
24- copy : yes
25- move : no
26+ copy : no
27+ move : yes
2628 resume : ask
2729 incremental : yes
2830 quiet_fallback : skip
Original file line number Diff line number Diff line change 11#!/usr/bin/with-contenv bash
22# shellcheck shell=bash
33
4+ if [[ -v DROP_ENABLED ]]; then
5+ echo "dropbox is enabled"
6+ beet dropbox &
7+ fi
8+
49if [[ -z ${LSIO_NON_ROOT_USER} ]]; then
510 exec \
611 s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 8337" \
You can’t perform that action at this time.
0 commit comments