Add aarch64 support and Channels DVR support (#49)

* add gitattributes for windows dev

* initial copy of dockerfile

* Add support for pi4 (aarch64); add support for Channels DVR updates

* fix IP in example

Co-authored-by: Nick Marnik <nkmhockey@gmail.com>
This commit is contained in:
Nick Marnik
2021-04-22 15:54:23 -04:00
committed by GitHub
parent 5f0a4daff0
commit 891180c2f4
4 changed files with 125 additions and 0 deletions

View File

@@ -99,4 +99,21 @@ if [ "$use_plexAPI" = "yes" ]; then
fi
fi
# update Channels via API
if [ "$use_channelsAPI" = "yes" ]; then
echo "Updating Channels..."
if [ -z "$channelsUpdateM3uURL" ]; then
echo "no Channels M3U URL provided"
else
curl -s -X POST "$channelsUpdateM3uURL"
sleep 1
fi
if [ -z "$channelsUpdateXmltvURL" ]; then
echo "no Channels XMLTV URL provided"
else
curl -s -X PUT "$channelsUpdateXmltvURL"
sleep 1
fi
fi
exit