Coder Social home page Coder Social logo

Automating downloads? about greg HOT 8 CLOSED

manolomartinez avatar manolomartinez commented on May 28, 2024
Automating downloads?

from greg.

Comments (8)

manolomartinez avatar manolomartinez commented on May 28, 2024

Hi, the easy way to keep podcasts up to date is to have greg sync as a cron job. The greg download command you were suggesting would download all podcasts from the past 5 days, regardless of whether it had already downloaded them before.

As for the second part of your question, greg currently does not do anything to downloaded files. Once they have been downloaded, greg's job is over. I think that's as it should be. To keep your directories free of stuff older than 5 days you could perhaps use find in another cron job. I believe the right incantation would be something like this:

find /path/to/podcast/dir/* -type f -mtime +5 -exec rm {} \

There's an rm in there, so please test that I got it right before erasing something you didn't mean to!

Manolo

from greg.

jceloria avatar jceloria commented on May 28, 2024

Thank you, that's all I was looking for. I just wanted to make sure I
wasn't missing something and then reinventing the wheel.

Much appreciated!

On Mon, Oct 12, 2015 at 4:41 PM, manolomartinez [email protected]
wrote:

Hi, the easy way to keep podcasts up to date is to have greg sync as a
cron job. The greg download command you were suggesting would download
all podcasts from the past 5 days, regardless of whether it had already
downloaded them before.

As for the second part of your question, greg currently does not do
anything to downloaded files. Once they have been downloaded, greg's job is
over. I think that's as it should be. To keep your directories free of
stuff older than 5 days you could perhaps use find in another cron job. I
believe the right incantation would be something like this:

find /path/to/podcast/dir/* -type f -mtime +5 -exec rm {} \

There's an rm there, so please test that I got it right before erasing
something you didn't want to!

Manolo


Reply to this email directly or view it on GitHub
#33 (comment).

from greg.

manolomartinez avatar manolomartinez commented on May 28, 2024

Thank you for reporting :) Closing now.

from greg.

Narrat avatar Narrat commented on May 28, 2024

Instead of using cron alternatively systemd user timers could be used (which are files that could be offered by greg) on systems using it as init system (like Arch)

from greg.

manolomartinez avatar manolomartinez commented on May 28, 2024

Huh, care expanding on that solution? It sounds interesting.

from greg.

Narrat avatar Narrat commented on May 28, 2024

Two unit files needs to be created. greg.service and greg.timer.
Installed would those files into /usr/lib/systemd/user (if a user wants to customize the fetch time he needs to copy it into $HOME/.config/systemd/user/ or /etc/systemd/user)

The service (greg.service) would look like:

[Unit]
Description=Greg - Podcast aggregator
Documentation=
RequiresMountsFor=/home/

[Service]
Type=simple
ExecStart=/usr/bin/greg download

(IIRC more than one ExecStart can be added for example to add this find-remove command)

And the timer (greg.timer) would look like:

[Unit]
Description=Timer for greg

[Timer]
OnBootSec=1h
OnUnitActiveSec=5h

[Install]
WantedBy=timers.target

Activating is done via

systemctl --user start greg.timer

OnBootSec activates the .service 1h after booting. After that OnUnitActiveSec should take control and check/download every 5h

from greg.

manolomartinez avatar manolomartinez commented on May 28, 2024

Thanks a lot for the explanation, Narrat. As with some other systemd tools, I am not sure how this improves over cron jobs. I'll think about it.

Thanks again,
M

from greg.

Narrat avatar Narrat commented on May 28, 2024

The Arch-wiki lists some points
https://wiki.archlinux.org/index.php/Systemd/Timers#As_a_cron_replacement

from greg.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.