Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

flexget unMenu package

Featured Replies

Hmmm well darn. Do you plan / have time to look into that? if so please let me know if I can help.

  • Replies 85
  • Views 27.6k
  • Created
  • Last Reply
  • Author

Do you plan / have time to look into that? if so please let me know if I can help.

I might find the time, but it is not at the top of my list of things to look into.

Great and I completely understand that it is not a top priority for you. For testing proposes, do you think Flexget would work if I turn off the plex plugin in the unRAID page? or is it not that simple to test?

  • 1 month later...

I haven't been able to get flexget running since my last reboot.  I'll post the install logs a bit later but at this stage it doesn't even create log files.

I tried a clean install of flexget and despite the script saying it was successful, it doesn't work.

 

Attached is a dump of the install script output.

 

The /apps/flexget directory only contains config.yml and flexget.log

trans_pack_inst.txt

I was having the same issue, after a restart (and therefore Flexget re-installed) Flexget wouldn't run.

 

Turns out they pushed out a new version, and the command syntax is slightly different.

 

It used to be (if your config was in /boot)

flexget -c /boot/config.yml

 

Now it's

flexget -c /boot/config.yml execute

 

Without execute on the end, it just spits out the help output, and doesn't run. Also the --cron flag has been removed, so if you're running Flexget w/ crontab, take out --cron and add execute at the end of the command.

oh, massive thank you scooter.  It's all working again.

  • Author

I was having the same issue, after a restart (and therefore Flexget re-installed) Flexget wouldn't run.

 

Turns out they pushed out a new version, and the command syntax is slightly different.

 

It used to be (if your config was in /boot)

flexget -c /boot/config.yml

 

Now it's

flexget -c /boot/config.yml execute

 

Without execute on the end, it just spits out the help output, and doesn't run. Also the --cron flag has been removed, so if you're running Flexget w/ crontab, take out --cron and add execute at the end of the command.

Thanks for the fix. 

 

Does anyone else find it redundant to have the execute on the end?

  • 3 months later...

I can't get Flexget up and running. I get the following log:

 

Traceback (most recent call last):
  File "setup.py", line 6, in 
    from setuptools import setup
ImportError: No module named setuptools
INSTALLED_FLEXGET_VERSION :: 
/boot/packages/flexget.manual_install: line 94: pip: command not found
/boot/packages/flexget.manual_install: line 96: pip: command not found
/boot/packages/flexget.manual_install: line 97: pip: command not found
Installed FlexGet to /mnt/user/Media/.flexget
Created config.yml file
Created unraid.d directory
Created init script, /etc/rc.d/unraid.d/rc.unraid_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_start_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_stop_flexget
flexget added to cron
flexget started as root
flexget-webui started as root
Please go here to view the flexget-webui

flexget apparently did not install properly, /usr/bin/flexget does not exist.

 

I am running on unRAID 5.0.4. This is the output of the script in your first post:

 

root@Tower:~# ps -ef | grep flexget
root     21170 20958  0 09:37 pts/0    00:00:00 grep flexget
root@Tower:~# cat PACKAGE_DIRECTORY/flexget.auto_install
cat: PACKAGE_DIRECTORY/flexget.auto_install: No such file or directory
root@Tower:~# cat PACKAGE_DIRECTORY/flexget.manual_install
cat: PACKAGE_DIRECTORY/flexget.manual_install: No such file or directory
root@Tower:~# ls /mnt/user/Media/.flexget
config.yml*
root@Tower:~# cat /mnt/user/Media/.flexget/config.yml
root@Tower:~# /usr/bin/flexget -V
-bash: /usr/bin/flexget: No such file or directory
root@Tower:~# /usr/bin/flexget -V | awk '{print$1}'
-bash: /usr/bin/flexget: No such file or directory
root@Tower:~# cd PACKAGE_DIRECTORY && find . -type f -name "flexget.man*" -print0 | xargs -0 ls -tr | awk 'END{print $NF}' | awk '{split($0,a,"-"); print a[2]}'
-bash: cd: PACKAGE_DIRECTORY: No such file or directory
root@Tower:~# cd PACKAGE_DIRECTORY && find . -type f -name "flexget.man*" -print0 | xargs -0 ls -tr | awk 'END{print $NF}' | awk '{split($0,a,"/"); print a[2]}'
-bash: cd: PACKAGE_DIRECTORY: No such file or directory
root@Tower:~# cat /var/log/syslog | grep -i flexget
Starting the install of FlexGet
Installed FlexGet to /mnt/cache/.flexget
Created init script, /etc/rc.d/unraid.d/rc.unraid_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_start_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_stop_flexget
Started flexget
Started flexget-webui
Starting the install of FlexGet
Installed FlexGet to /mnt/cache/.flexget
Created init script, /etc/rc.d/unraid.d/rc.unraid_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_start_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_stop_flexget
Started flexget
Started flexget-webui
Starting the install of FlexGet
Installed FlexGet to /mnt/cache/.flexget
Created init script, /etc/rc.d/unraid.d/rc.unraid_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_start_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_stop_flexget
Started flexget
Started flexget-webui
Starting the install of FlexGet
Installed FlexGet to /mnt/user/Media/.flexget
Created init script, /etc/rc.d/unraid.d/rc.unraid_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_start_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_stop_flexget
Started flexget
Started flexget-webui

 

What is the issue here? Thanks for your help!

  • Author

I can't get Flexget up and running. I get the following log:

 

Traceback (most recent call last):
  File "setup.py", line 6, in 
    from setuptools import setup
ImportError: No module named setuptools
INSTALLED_FLEXGET_VERSION :: 
/boot/packages/flexget.manual_install: line 94: pip: command not found
/boot/packages/flexget.manual_install: line 96: pip: command not found
/boot/packages/flexget.manual_install: line 97: pip: command not found
Installed FlexGet to /mnt/user/Media/.flexget
Created config.yml file
Created unraid.d directory
Created init script, /etc/rc.d/unraid.d/rc.unraid_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_start_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_stop_flexget
flexget added to cron
flexget started as root
flexget-webui started as root
Please go here to view the flexget-webui

flexget apparently did not install properly, /usr/bin/flexget does not exist.

 

I am running on unRAID 5.0.4. This is the output of the script in your first post:

 

root@Tower:~# ps -ef | grep flexget
root     21170 20958  0 09:37 pts/0    00:00:00 grep flexget
root@Tower:~# cat PACKAGE_DIRECTORY/flexget.auto_install
cat: PACKAGE_DIRECTORY/flexget.auto_install: No such file or directory
root@Tower:~# cat PACKAGE_DIRECTORY/flexget.manual_install
cat: PACKAGE_DIRECTORY/flexget.manual_install: No such file or directory
root@Tower:~# ls /mnt/user/Media/.flexget
config.yml*
root@Tower:~# cat /mnt/user/Media/.flexget/config.yml
root@Tower:~# /usr/bin/flexget -V
-bash: /usr/bin/flexget: No such file or directory
root@Tower:~# /usr/bin/flexget -V | awk '{print$1}'
-bash: /usr/bin/flexget: No such file or directory
root@Tower:~# cd PACKAGE_DIRECTORY && find . -type f -name "flexget.man*" -print0 | xargs -0 ls -tr | awk 'END{print $NF}' | awk '{split($0,a,"-"); print a[2]}'
-bash: cd: PACKAGE_DIRECTORY: No such file or directory
root@Tower:~# cd PACKAGE_DIRECTORY && find . -type f -name "flexget.man*" -print0 | xargs -0 ls -tr | awk 'END{print $NF}' | awk '{split($0,a,"/"); print a[2]}'
-bash: cd: PACKAGE_DIRECTORY: No such file or directory
root@Tower:~# cat /var/log/syslog | grep -i flexget
Starting the install of FlexGet
Installed FlexGet to /mnt/cache/.flexget
Created init script, /etc/rc.d/unraid.d/rc.unraid_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_start_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_stop_flexget
Started flexget
Started flexget-webui
Starting the install of FlexGet
Installed FlexGet to /mnt/cache/.flexget
Created init script, /etc/rc.d/unraid.d/rc.unraid_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_start_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_stop_flexget
Started flexget
Started flexget-webui
Starting the install of FlexGet
Installed FlexGet to /mnt/cache/.flexget
Created init script, /etc/rc.d/unraid.d/rc.unraid_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_start_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_stop_flexget
Started flexget
Started flexget-webui
Starting the install of FlexGet
Installed FlexGet to /mnt/user/Media/.flexget
Created init script, /etc/rc.d/unraid.d/rc.unraid_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_start_flexget
Created unmenu start script, /boot/unmenu/44-unmenu_user_script_stop_flexget
Started flexget
Started flexget-webui

 

What is the issue here? Thanks for your help!

 

If I get a chance I will look into it.  I am not going to promise anything though as I am pretty busy with other things and since I do not use Flexget myself it has a tendency to not get updated as much as it probably should.

Well, this seems to be the interesting part of the log:

 

ImportError: No module named setuptools
INSTALLED_FLEXGET_VERSION :: 
/boot/packages/flexget.manual_install: line 94: pip: command not found
/boot/packages/flexget.manual_install: line 96: pip: command not found
/boot/packages/flexget.manual_install: line 97: pip: command not found

 

What could be causing this?

Archived

This topic is now archived and is closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.