Mercurial > hg > dhcpcd
diff src/script.c @ 5535:a0d828e25482 draft
Add --noconfigure option
With this set dhcpcd will not configure anything on the host.
The expectation is that a 3rd party script will instead.
| author | Roy Marples <roy@marples.name> |
|---|---|
| date | Wed, 04 Nov 2020 14:18:48 +0000 |
| parents | 2737c3236e66 |
| children | 4fe5c2a71254 |
line wrap: on
line diff
--- a/src/script.c Wed Nov 04 11:31:40 2020 +1300 +++ b/src/script.c Wed Nov 04 14:18:48 2020 +0000 @@ -350,6 +350,9 @@ } if (ifp->ctx->options & DHCPCD_DUMPLEASE && protocol != PROTO_LINK) goto dumplease; + if (efprintf(fp, "if_configured=%s", + ifo->options & DHCPCD_CONFIGURE ? "true" : "false") == -1) + goto eexit; if (efprintf(fp, "ifcarrier=%s", ifp->carrier == LINK_UNKNOWN ? "unknown" : ifp->carrier == LINK_UP ? "up" : "down") == -1)
