twitch-clip-download
This commit is contained in:
parent
6a90f605cc
commit
d451a70db8
3 changed files with 39 additions and 0 deletions
7
bundles/twitch-clip-download/items.py
Normal file
7
bundles/twitch-clip-download/items.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
directories = {
|
||||
'/var/lib/twitch-clips': {},
|
||||
}
|
||||
|
||||
pkg_pip = {
|
||||
'twitch-dl': {},
|
||||
}
|
28
bundles/twitch-clip-download/metadata.py
Normal file
28
bundles/twitch-clip-download/metadata.py
Normal file
|
@ -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',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue