linuxserver / docker-transmission

GNU General Public License v3.0
582 stars 180 forks source link

Busybox findutils package removed #220

Closed stedju499 closed 1 year ago

stedju499 commented 1 year ago

Is there an existing issue for this?

Current Behavior

Busybox findutils package was removed in https://github.com/linuxserver/docker-transmission/commit/0a7daf3f27c05026cbbf2dbc93d5f2a1d4b28250

It is needed for commonly used torrent-done unrar script: find /$TR_TORRENT_DIR/$TR_TORRENT_NAME -name "*.rar" -execdir unrar e -o- "{}" \;

Could you please add it back?

Expected Behavior

No response

Steps To Reproduce

Download torrent with rar files and execute this as post script: find /$TR_TORRENT_DIR/$TR_TORRENT_NAME -name "*.rar" -execdir unrar e -o- "{}" \;

Environment

- OS:
- How docker service was installed:

CPU architecture

x86-64

Docker creation

N/A

Container logs

N/A
github-actions[bot] commented 1 year ago

Thanks for opening your first issue here! Be sure to follow the bug or feature issue templates!

thespad commented 1 year ago

The Busybox find util is present OOTB. findutils is specifically the GNU find utilities package.

It looks like -execdir isn't supported by the busybox version, shouldn't be a problem to add the GNU package back in.