1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/resolvconf.md
Juri Dispan 0f0c9da99e
*: replace dead more information links (#11542)
* *: replace dead more informtion links

* dolt

* Apply suggestions from code review

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-19 22:07:13 +01:00

30 lines
898 B
Markdown

# resolvconf
> Manage nameserver information.
> Acts as an intermediary between programs that supply nameserver information and applications that use this information.
> This tldr documents Debian's implementation of resolvconf.
> More information: <https://manned.org/resolvconf.8>.
- Add or override the IFACE.PROG record and run the update scripts if updating is enabled:
`resolvconf -a {{IFACE.PROG}}`
- Delete the IFACE.PROG record and run the update scripts if updating is enabled:
`resolvconf -d {{IFACR.PROG}}`
- Just run the update scripts if updating is enabled:
`resolvconf -u`
- Set the flag indicating whether `resolvconf` should run update scripts when invoked with `-a`, `-d` or `-u`:
`resolvconf --enable-updates`
- Clear the flag indicating whether to run updates:
`resolvconf --disable-updates`
- Check whether updates are enabled:
`resolvconf --updates-are-enabled`