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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user