networkInterfaces() prevent error getting DHCP Nics

This commit is contained in:
Sebastian Hildebrandt 2020-01-12 12:11:05 +01:00
parent cf85b2f1b6
commit 89a48ca696

View File

@ -498,7 +498,7 @@ function getLinuxDHCPNics() {
util.noop();
}
try {
cmd = 'cat /etc/network/interfaces | grep iface';
cmd = 'cat /etc/network/interfaces 2> /dev/null| grep iface';
const lines = execSync(cmd, { maxBuffer: 1024 * 20000 }).toString().split('\n');
lines.forEach(line => {
const parts = line.replace(/\s+/g, ' ').trim().split(' ');