This commit is contained in:
deathbybandaid 2023-03-14 13:17:10 -04:00
parent 467ebf5d1d
commit f46deaca24

View File

@ -4,7 +4,7 @@
source ./plex-token.sh
# run a loop against each library
for medialibrary in `curl -s -H "Accept: application/json" -H "X-Plex-Token: ${TOKEN}" http://127.0.0.1:32400/library/sections`
for medialibrary in `curl -s -H "Accept: application/json" -H "X-Plex-Token: ${LOCAL_PLEX_TOKEN}" http://127.0.0.1:32400/library/sections`
do
library_number=$($medialibrary | jq -M -r '.MediaContainer.Directory[] | "\(.key)"')
@ -12,13 +12,13 @@ do
echo "$library_number"
#echo "[DEBUG PLEX] Running Library Update for key: ${library_number}"
#curl -X PUT http://127.0.0.1:32400/library/sections/${library_number}/refresh\?force=1\&X-Plex-Token=${TOKEN}
#curl -X PUT http://127.0.0.1:32400/library/sections/${library_number}/refresh\?force=1\&X-Plex-Token=${LOCAL_PLEX_TOKEN}
# adding 30 sec sleep
#sleep 30
#echo "[DEBUG PLEX] Emptying Trash for key: ${library_number}"
#curl -X PUT http://127.0.0.1:32400/library/sections/${library_number}/emptyTrash\?X-Plex-Token=${TOKEN}
#curl -X PUT http://127.0.0.1:32400/library/sections/${library_number}/emptyTrash\?X-Plex-Token=${LOCAL_PLEX_TOKEN}
done