I cant find a source to install “flexget” via apt etc… would anyone have the .deb file for it? I’m running an older firmware on the WD cloud that doesnt require FW 4.x recompile etc…
Hopefully you will be able to obtain the file you are looking for.
Regards,
This was done on WD drive running an older firmware, NOT 4.x… release
I have successfully been able to get get flexget get working on the WD my cloud drive…
Note, I had Transmission already installed and setup before. Just had to install “transmissionrpc” to make it work with flex
basically the steps were something like:
- Log in through ssh
- Remove wd-nas component links in dpkg database:
rm -f /var/lib/dpkg/info/wd-nas.*
3. Run the following commands:
apt-get update
apt-get install python-pip
pip install transmissionrpc
easy_install --upgrade transmissionrpc
Once installed. Flexget requires a “config.yml” file to be read when its launched. I created that file in a folder of my choice and i call that file when i launch flexget as:
flexget -c /shares/data/Drivers/scripts/flexget/config.yml execute
NOTE: the config.yml can be an insaley complicated file and its ridiculously customizable. Im using a pretty simple config. Read on flexget’s site for guides and stuff.
My “Config.yml” file: https://dl.dropboxusercontent.com/u/4883446/config.yml
Please note that i just got this working and there might be some errors in my config file. However it seems to be functioning fine for the most part.
Some things to keep in mind:
1- if the config file is bad, flexget wont even launch and you will see errors righaway.
2- The indentation (tabs) in the config file are MANDATORY and have to be in a certain format. Read flex get’s wiki on that.