Updated cloudflare-template.sh tab indentation
Global variable tab indentation fixed.
This commit is contained in:
parent
af44604f7b
commit
1e7c89bd61
|
@ -1,18 +1,18 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
## When the system shell is required, replace the first line of the script with "#!/bin/sh"
|
## When the system shell is required, replace the first line of the script with "#!/bin/sh"
|
||||||
|
|
||||||
auth_email="" # Your account e-mail address; "Example@domain.com" (https://dash.cloudflare.com)
|
auth_email="" # Your account e-mail address; "Example@domain.com" (https://dash.cloudflare.com)
|
||||||
auth_method="token" # Your account authentication method; Set to "global" for Global API Key or "token" for Scoped API Token
|
auth_method="token" # Your account authentication method; Set to "global" for Global API Key or "token" for Scoped API Token
|
||||||
auth_key="" # Your Global API Key or Scoped API Token; Located within the "API Tokens" section of your profile
|
auth_key="" # Your Global API Key or Scoped API Token; Located within the "API Tokens" section of your profile
|
||||||
zone_identifier="" # Your Zone Identifier ID; Located within the "Overview" section of your domain
|
zone_identifier="" # Your Zone Identifier ID; Located within the "Overview" section of your domain
|
||||||
record_name_A="" # The name of your A record; "www.example.com"
|
record_name_A="" # The name of your A record; "www.example.com"
|
||||||
record_name_AAAA="" # The name of your AAAA record; "www.example.com"
|
record_name_AAAA="" # The name of your AAAA record; "www.example.com"
|
||||||
ttl="1" # Set the DNS TTL (seconds); "1" for automatic or "3600" for default
|
ttl="1" # Set the DNS TTL (seconds); "1" for automatic or "3600" for default
|
||||||
proxy="false" # Set the Proxy Status to "true" or "false"; "true" for Proxied or "false" for DNS Only
|
proxy="false" # Set the Proxy Status to "true" or "false"; "true" for Proxied or "false" for DNS Only
|
||||||
website_name="" # The title of your website; "Example Website"
|
website_name="" # The title of your website; "Example Website"
|
||||||
slack_channel="" # The name of your Slack channel; "#channel"
|
slack_channel="" # The name of your Slack channel; "#channel"
|
||||||
slack_uri="" # The URI of your Slack Webhook; "https://hooks.slack.com/services/xxxxx"
|
slack_uri="" # The URI of your Slack Webhook; "https://hooks.slack.com/services/xxxxx"
|
||||||
discord_uri="" # The URI of your Discord Webhook; "https://discordapp.com/api/webhooks/xxxxx"
|
discord_uri="" # The URI of your Discord Webhook; "https://discordapp.com/api/webhooks/xxxxx"
|
||||||
|
|
||||||
#####################################
|
#####################################
|
||||||
## Check for a public IPv4 address ##
|
## Check for a public IPv4 address ##
|
||||||
|
|
Loading…
Reference in New Issue