Medic.Checks.Hosts (Medic v2.0.1)

View Source

Host-related checks

Summary

Functions

Uses hostess to check that the given host exists in /etc/hosts, and if not, suggests using hostess to add the host pointing at 127.0.0.1.

Functions

host_exists?(host, opts \\ [])

@spec host_exists?(
  binary(),
  keyword()
) :: Medic.Check.check_return_t()

Uses hostess to check that the given host exists in /etc/hosts, and if not, suggests using hostess to add the host pointing at 127.0.0.1.

Assumes that hostess is installed.

Accepts a remedy option.

{Medic.Checks.Hosts, :host_exists?, ["myapp.local"]}
{Medic.Checks.Hosts, :host_exists?, ["myapp2.local", remedy: "sudo hostess add myapp2 127.0.0.2"]}