scooterpsu

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by scooterpsu

  1. Having just updated to 6.1.3 non-beta today, I hit the same prompt as it looks like others are getting, but I think I know the issue. The problem, it seems, is that you moved where it's looking for scripts. Before this update, there was no scripts folder, and subsequently no folder created. I tried moving the mounting/unmounting files there, but that's only part of the issue. The install is also not putting the rc.ProFTPd file in scripts either (it's not saved anywhere in the config folder). So any of those files can/are throwing errors.
  2. In the Flexget plugin, it's always telling you there's an update to version 2. On line 562 NEWVER=`pip search flexget | grep LATEST | cut -f1 | awk '{print 2}'` should probably be NEWVER=`pip search flexget | grep LATEST | cut -f1 | awk '{print $2}'`
  3. PhAzE, I'd love to give your FlexGet plugin a shot if you need a tester. Re-downloading via pip every boot is sort of a pain.
  4. 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.