fix(qbittorrent): specify container in updateip script
This commit is contained in:
parent
52e9a314af
commit
320a4ed1dc
|
@ -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 -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 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')
|
||||
echo $OUTPUT
|
||||
if [[ $OUTPUT == *"Success\":true"* ]]; then
|
||||
echo "Success"
|
||||
|
|
Loading…
Reference in New Issue