mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-infect.git
synced 2024-11-25 13:01:28 +00:00
Remove teardown to investigate
This commit is contained in:
parent
ba280dea09
commit
e4ab961ab1
33
.drone.yml
33
.drone.yml
|
@ -113,22 +113,23 @@ steps:
|
||||||
from_secret: ZONE_ID
|
from_secret: ZONE_ID
|
||||||
commands:
|
commands:
|
||||||
# Delete our machine called 'ci-sibling' and all the found DNS records on it.
|
# Delete our machine called 'ci-sibling' and all the found DNS records on it.
|
||||||
- >
|
- return 0
|
||||||
curl -s "https://api.hetzner.cloud/v1/servers" -H "Authorization: Bearer $PASSWORD" > .hetzner_servers.json
|
#- >
|
||||||
- >
|
# curl -s "https://api.hetzner.cloud/v1/servers" -H "Authorization: Bearer $PASSWORD" > .hetzner_servers.json
|
||||||
export machineid=$( for i in {0..24}; do jq 'if .servers['$i'].name == "ci-sibling" then .servers['$i'].id else null end' .hetzner_servers.json; done | grep -v null | sed 's/"//g')
|
#- >
|
||||||
- >
|
# export machineid=$( for i in {0..24}; do jq 'if .servers['$i'].name == "ci-sibling" then .servers['$i'].id else null end' .hetzner_servers.json; done | grep -v null | sed 's/"//g')
|
||||||
curl -s -X DELETE "https://api.hetzner.cloud/v1/servers/$machineid" -H "Authorization: Bearer $PASSWORD"
|
#- >
|
||||||
- >
|
# curl -s -X DELETE "https://api.hetzner.cloud/v1/servers/$machineid" -H "Authorization: Bearer $PASSWORD"
|
||||||
json=$(curl -X GET "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records" -H "Authorization: Bearer $CLOUDFLARE_TOKEN" -H "Content-Type: application/json")
|
#- >
|
||||||
- >
|
# json=$(curl -X GET "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records" -H "Authorization: Bearer $CLOUDFLARE_TOKEN" -H "Content-Type: application/json")
|
||||||
echo "$json" > .dns-records.json
|
#- >
|
||||||
- >
|
# echo "$json" > .dns-records.json
|
||||||
result=$(jq -r ".result" <<< "$json")
|
#- >
|
||||||
- >
|
# result=$(jq -r ".result" <<< "$json")
|
||||||
echo "$ZONE_ID"
|
#- >
|
||||||
- >
|
# echo "$ZONE_ID"
|
||||||
echo "$result" | jq '.[] | "\(.id)"' | while read id ; do echo "Deleting $id"; http -v --check-status --ignore-stdin DELETE https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records/$(echo $id | cut -f 2 -d '"') Authorization:"Bearer $CLOUDFLARE_TOKEN"; done
|
#- >
|
||||||
|
# echo "$result" | jq '.[] | "\(.id)"' | while read id ; do echo "Deleting $id"; http -v --check-status --ignore-stdin DELETE https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records/$(echo $id | cut -f 2 -d '"') Authorization:"Bearer $CLOUDFLARE_TOKEN"; done
|
||||||
when:
|
when:
|
||||||
status:
|
status:
|
||||||
- failure
|
- failure
|
||||||
|
|
|
@ -67,7 +67,13 @@ makeConf() {
|
||||||
},
|
},
|
||||||
"timezone": "Europe/Uzhgorod",
|
"timezone": "Europe/Uzhgorod",
|
||||||
"resticPassword": $ESCAPED_PASSWORD,
|
"resticPassword": $ESCAPED_PASSWORD,
|
||||||
"username": "$LUSER"
|
"username": "$LUSER",
|
||||||
|
"ssh": {
|
||||||
|
"rootKeys": [
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMEZ/VXDu/hN4rWE3WssSOXQaRB7wfNj7IE52CePKpo3 naiji@naiji-pc",
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIE7WW3x/Xuz6IBIG8uBMvcytCOMtYkGau7x2foyoK6rc inex@inex-hp-envy"
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
chmod 0600 /etc/nixos/userdata/userdata.json
|
chmod 0600 /etc/nixos/userdata/userdata.json
|
||||||
|
|
Loading…
Reference in a new issue