1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-04 08:10:07 +01:00

Include resolv conf in diagnose command

Including the linked resolv.conf helps with troubleshooting situations where dns appears to not be working.
(Mostly the goal is to determine whether a conflicting entry is listed too early, or if the localhost is not listed first when others are present.)
This commit is contained in:
Chris Brown
2020-11-28 23:41:10 -05:00
parent b01556272d
commit 78bfd8b9c2

View File

@@ -40,6 +40,8 @@ class Diagnose
'ls -al ~/Library/LaunchAgents | grep homebrew',
'ls -al /Library/LaunchAgents | grep homebrew',
'ls -al /Library/LaunchDaemons | grep homebrew',
'ls -aln /etc/resolv.conf',
'cat /etc/resolv.conf',
];
var $cli, $files, $print, $progressBar;