mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Do not fail validation when IPv6 is disabled by unloading the associated kernel module (#8648)
This commit is contained in:
committed by
Tony Murray
parent
d257fa0ea5
commit
f568adfe0a
@ -68,7 +68,7 @@ class Programs extends BaseValidation
|
||||
return;
|
||||
}
|
||||
|
||||
if (str_contains($output, '::1 is unreachable')) {
|
||||
if (str_contains($output, '::1 is unreachable') || str_contains($output, 'Address family not supported')) {
|
||||
$validator->warn("IPv6 is disabled on your server, you will not be able to add IPv6 devices.");
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user