Merge pull request #111 from ifupdown-ng/feature/deprecate-brctl

vlan aware bridging
This commit is contained in:
Ariadne Conill 2020-10-22 13:42:00 -08:00 committed by GitHub
commit 19a5a671eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 471 additions and 36 deletions

View file

@ -272,6 +272,12 @@ ifquery_main(int argc, char *argv[])
return EXIT_FAILURE;
}
if (!lif_compat_apply(&collection))
{
fprintf(stderr, "%s: failed to apply compatibility glue\n", argv0);
return EXIT_FAILURE;
}
/* --list --state is not allowed */
if (listing && (listing_stat || listing_running))
generic_usage(self_applet, EXIT_FAILURE);