invoke install, change ebtables-legacy from error to warning, since we dont exit

This commit is contained in:
Blake Harnden 2020-07-10 17:57:10 -07:00
parent 737dae1224
commit 8cf89fa114

View file

@ -93,7 +93,9 @@ def install_system(c: Context, os_info: OsInfo, hide: bool) -> None:
warn=True,
hide=hide
):
print("ERROR: unable to setup required ebtables-legacy, WLAN will not work")
print(
"WARNING: unable to setup required ebtables-legacy, WLAN will not work"
)
def install_grpcio(c: Context, hide: bool) -> None: