1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-08-08 04:20:07 +02:00

🐛 Fix First Aid not working

This commit is contained in:
2022-01-29 17:46:37 +01:00
parent 7b6809245c
commit 74817beec6

View File

@ -111,11 +111,14 @@ class Actions {
brew("services stop \(formula)", sudo: true)
}
brew("services stop dnsmasq")
brew("services stop php")
brew("services stop nginx")
brew("link php")
brew("link php --force")
brew("services restart dnsmasq", sudo: true)
brew("services stop php", sudo: true)
brew("services stop nginx", sudo: true)
brew("services restart php", sudo: true)
brew("services restart nginx", sudo: true)
}
}