fix(qbittorrent): use correct qbittorrent container name in updateip script
This commit is contained in:
parent
c1a9860337
commit
85d1fa4a46
|
@ -9,7 +9,7 @@ data:
|
|||
echo 'getting pod name'
|
||||
POD_NAME=$(kubectl get pods -n download --selector "app.kubernetes.io/name=qbittorrent" --output=jsonpath={.items..metadata.name})
|
||||
echo $POD_NAME
|
||||
OUTPUT=$(kubectl exec -it $POD_NAME -c main -n download -- /bin/bash -c 'MAM_ID=$(cat /etc/tokens/mam-id); curl -i -c /etc/mam.cookies -b "mam_id=$MAM_ID" https://t.myanonamouse.net/json/dynamicSeedbox.php')
|
||||
OUTPUT=$(kubectl exec -it $POD_NAME -c app -n download -- /bin/bash -c 'MAM_ID=$(cat /etc/tokens/mam-id); curl -i -c /etc/mam.cookies -b "mam_id=$MAM_ID" https://t.myanonamouse.net/json/dynamicSeedbox.php')
|
||||
echo $OUTPUT
|
||||
if [[ $OUTPUT == *"Success\":true"* ]]; then
|
||||
echo "Success"
|
||||
|
|
Loading…
Reference in New Issue