From d451a70db8d868fd0233e4ea382d392de753ad81 Mon Sep 17 00:00:00 2001 From: cronekorkn Date: Tue, 4 Apr 2023 11:06:21 +0200 Subject: [PATCH] twitch-clip-download --- bundles/twitch-clip-download/items.py | 7 ++++++ bundles/twitch-clip-download/metadata.py | 28 ++++++++++++++++++++++++ nodes/home.server.py | 4 ++++ 3 files changed, 39 insertions(+) create mode 100644 bundles/twitch-clip-download/items.py create mode 100644 bundles/twitch-clip-download/metadata.py diff --git a/bundles/twitch-clip-download/items.py b/bundles/twitch-clip-download/items.py new file mode 100644 index 0000000..197d25b --- /dev/null +++ b/bundles/twitch-clip-download/items.py @@ -0,0 +1,7 @@ +directories = { + '/var/lib/twitch-clips': {}, +} + +pkg_pip = { + 'twitch-dl': {}, +} diff --git a/bundles/twitch-clip-download/metadata.py b/bundles/twitch-clip-download/metadata.py new file mode 100644 index 0000000..d5e75b8 --- /dev/null +++ b/bundles/twitch-clip-download/metadata.py @@ -0,0 +1,28 @@ +defaults = { + 'backup': { + 'paths': { + '/var/lib/twitch-clips', + }, + }, + 'systemd-timers': { + f'twitch-clip-download': { + 'command': '/usr/local/bin/twitch-dl clips cronekorkn_ --download --all', + 'when': 'daily', + 'persistent': True, + 'working_dir': '/var/lib/twitch-clips', + 'after': { + 'network-online.target', + }, + }, + }, + 'zfs': { + 'datasets': { + 'tank/twitch-clips': { + 'mountpoint': '/var/lib/twitch-clips', + 'needed_by': { + 'svc_systemd:twitch-clip-download.timer', + }, + }, + }, + }, +} diff --git a/nodes/home.server.py b/nodes/home.server.py index 7eb4404..142b254 100644 --- a/nodes/home.server.py +++ b/nodes/home.server.py @@ -30,6 +30,7 @@ 'steam-chat-logger', 'steam-chat-viewer', 'systemd-swap', + 'twitch-clip-download', 'raspberrymatic-cert', 'tasmota-charge', 'wireguard', @@ -153,6 +154,9 @@ 'max': 70, }, }, + 'twitch-clip-download': { + 'channel_name': 'cronekorkn_', + }, 'vm': { 'cores': 16, 'threads': 32,