mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-infect.git
synced 2024-11-23 04:21:27 +00:00
PoC: Alternative envvar definition
This commit is contained in:
parent
2dc9c5606e
commit
b4a9bea8b3
18
.drone.yml
18
.drone.yml
|
@ -46,22 +46,22 @@ steps:
|
||||||
curl -s -X POST "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records"
|
curl -s -X POST "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records"
|
||||||
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
|
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
|
||||||
-H "Content-Type: application/json"
|
-H "Content-Type: application/json"
|
||||||
--data '{"type":"A","name":"$DOMAIN","content":"$machineip","ttl":3600,"priority":10,"proxied":false}'
|
--data '{"type":"A","name":"$DOMAIN","content":"${machineip}","ttl":3600,"priority":10,"proxied":false}'
|
||||||
- >
|
- >
|
||||||
curl -s -X POST "https://api.cloudflare.com/client/v4/zones/${ZONE_ID}/dns_records"
|
curl -s -X POST "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records"
|
||||||
-H "Authorization: Bearer ${CLOUDFLARE_TOKEN}"
|
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
|
||||||
-H "Content-Type: application/json"
|
-H "Content-Type: application/json"
|
||||||
--data '{"type":"MX","name":"@","content":"'"${DOMAIN}"'","ttl":3600,"priority":10,"proxied":false}'
|
--data '{"type":"MX","name":"@","content":"$DOMAIN","ttl":3600,"priority":10,"proxied":false}'
|
||||||
- >
|
- >
|
||||||
curl -s -X POST "https://api.cloudflare.com/client/v4/zones/${ZONE_ID}/dns_records"
|
curl -s -X POST "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records"
|
||||||
-H "Authorization: Bearer ${CLOUDFLARE_TOKEN}"
|
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
|
||||||
-H "Content-Type: application/json"
|
-H "Content-Type: application/json"
|
||||||
--data '{"type":"TXT","name":"_dmarc","content":"v=DMARC1; p=none","ttl":18000,"priority":10,"proxied":false}'
|
--data '{"type":"TXT","name":"_dmarc","content":"v=DMARC1; p=none","ttl":18000,"priority":10,"proxied":false}'
|
||||||
- >
|
- >
|
||||||
curl -s -X POST "https://api.cloudflare.com/client/v4/zones/${ZONE_ID}/dns_records"
|
curl -s -X POST "https://api.cloudflare.com/client/v4/zones/$ZONE_ID/dns_records"
|
||||||
-H "Authorization: Bearer ${CLOUDFLARE_TOKEN}"
|
-H "Authorization: Bearer $CLOUDFLARE_TOKEN"
|
||||||
-H "Content-Type: application/json"
|
-H "Content-Type: application/json"
|
||||||
--data '{"type":"TXT","name":"'"${DOMAIN}"'","content":"v=spf1 a mx ip4:'"$machineip"' -all","ttl":18000,"priority":10,"proxied":false}'
|
--data '{"type":"TXT","name":"$DOMAIN","content":"v=spf1 a mx ip4:'"${machineip}"' -all","ttl":18000,"priority":10,"proxied":false}'
|
||||||
|
|
||||||
- name: sleep
|
- name: sleep
|
||||||
commands:
|
commands:
|
||||||
|
|
Loading…
Reference in a new issue