Skip to content
This repository was archived by the owner on Feb 19, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions 09-sonarr-stats
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

source /etc/update-motd.d/config.conf
source /etc/update-motd.d/colors.txt
/bin/bash /etc/update-motd.d/dependency-check.sh

echo -e " ${YEL}Missing Tv Episodes :${NC} There are currently ${PUR}$(curl -s $SONARRHOST:$SONARRPORT/api/wanted/missing?apikey=$SONARRAPI |jq -r '.totalRecords' | tr -d '"' )${NC} Episodes missing in Sonnar"





File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions 13-radarr-stats
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

source /etc/update-motd.d/config.conf
source /etc/update-motd.d/colors.txt
/bin/bash /etc/update-motd.d/dependency-check.sh

echo -e " ${YEL}Missing Movies .....:${NC} There are currently ${PUR}$(curl -s $RADARRHOST:$RADARRPORT/api/wanted/missing?apikey=$RADARRAPI |jq -r '.totalRecords')${NC} Movies missing in Radarr"
0 11-disk-stats → 20-disk-stats
100755 → 100644
File renamed without changes.
13 changes: 11 additions & 2 deletions config.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,19 @@ TRANSPASS="pass" # Transmission Web Password

TAUTIP="http://localhost" # Tautulli IP/Hostname
TAUTPORT="8181" # Tautulli Port
TAUTAPI="apikey" # Tautulli API Key
TAUTAPI="APIKEY" # Tautulli API Key

SABHOST="http://localhost" # SABNZBD IP/Hostname
SABPORT="8080" # SABNZBD Port
SABAPI="apikey" # SABNZBD API Key

DISKS=/mnt/Bay01/,/mnt/Bay02/,/mnt/Bay03/,/mnt/Bay04/,/mnt/Bay05/,/mnt/Bay06/,/mnt/Bay07/,/mnt/Bay08/
SONARRHOST="http://localhost" # Sonarr IP/Hostname
SONARRPORT="8989" # Sonarr Port
SONARRAPI="APIKEY" # Sonarr API Key

RADARRHOST="http://localhost" # Radarr IP/Hostname
RADARRPORT="7878" # Radarr Port
RADARRAPI="APIKEY" # Radarr API Key


DISKS=/mnt/tv/,/mnt/movies