mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Pass -q and -u flags to modload so that it shuts up and doesn't leave
modules lying around.
This commit is contained in:
parent
9d1275ccf4
commit
d5ebbcdf85
1 changed files with 1 additions and 1 deletions
|
|
@ -233,7 +233,7 @@ vfsload(const char *name)
|
|||
|
||||
snprintf(name_mod, sizeof name_mod, "%s%s", name, "_mod");
|
||||
status = execlp("modload", "modload", "-e", name_mod, "-o", name_mod,
|
||||
path, (const char *)0);
|
||||
"-u", "-q", path, (const char *)0);
|
||||
|
||||
exit(status ? errno : 0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue