@astrofoundry/pi-astro 0.19.2 → 0.19.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/skills/dns/SKILL.md +2 -2
package/package.json
CHANGED
package/skills/dns/SKILL.md
CHANGED
|
@@ -25,8 +25,8 @@ Two resolvers serve the homelab: Technitium primary on Synapse (`10.0.40.53`) an
|
|
|
25
25
|
Record parameters by type (the API's names): `A`/`AAAA` `ipAddress` (update: `newIpAddress`); `CNAME` `cname`; `TXT` `text`; `MX` `exchange`, `preference`; `SRV` `priority`, `weight`, `port`, `target`; `NS` `nameServer`; `PTR` `ptrName`. `ttl=<seconds>` and `comments=<text>` apply to all; `overwrite=true` replaces the record set on add.
|
|
26
26
|
|
|
27
27
|
```json
|
|
28
|
-
{ "args": ["technitium", "primary", "records", "37pla.net"] }
|
|
29
|
-
{ "args": ["technitium", "primary", "record-add", "37pla.net", "kuma.37pla.net", "A", "ipAddress=10.0.40.30", "ttl=300"] }
|
|
28
|
+
{ "args": ["technitium", "primary", "records", "auth.37pla.net"] }
|
|
29
|
+
{ "args": ["technitium", "primary", "record-add", "kuma.37pla.net", "kuma.37pla.net", "A", "ipAddress=10.0.40.30", "ttl=300"] }
|
|
30
30
|
{ "args": ["technitium", "secondary", "resolve", "kuma.37pla.net"] }
|
|
31
31
|
```
|
|
32
32
|
|