
Rex::Commands::Host - Edit /etc/hosts

With this module you can manage the host entries in /etc/hosts.

task "create-host", "remoteserver", sub {
create_host "rexify.org" => {
ip => "88.198.93.110",
aliases => ["www.rexify.org"],
};
};

Update or create a /etc/hosts entry.
create_host "rexify.org", {
ip => "88.198.93.110",
aliases => ["www.rexify.org", ...]
};
Delete a host from /etc/hosts.
delete_host "www.rexify.org";
Returns the information of $host in /etc/resolv.conf.
my @host_info = get_host "localhost";
say "Host-IP: " . $host_info[0]->{"ip"};