1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00
2023-01-20 07:56:20 -05:00

589 B

name
PURGE

PURGE is the default setting for all domains. Therefore PURGE is a no-op. It is included for completeness only.

A domain with a mixture of NO_PURGE and PURGE parameters will abide by the last one.

These three examples all are equivalent.

PURGE is the default:

D("example.com", .... ,
);

Purge is the default, but we set it anyway:

D("example.com", .... ,
  PURGE,
);

Since the "last command wins", this is the same as PURGE:

D("example.com", .... ,
  PURGE,
  NO_PURGE,
  PURGE,
  NO_PURGE,
  PURGE,
);