class Sprinkle::Actors::Local

The local actor executes all commands on your local system, as opposed to other implementations that generally run commands on a remote system over the network.

This could be useful if you'd like to use Sprinkle to provision your local machine. To enable this actor, in your Sprinkle script specify the :local delivery mechanism.

deployment do
  delivery :local
end

Note: The local actor completely ignores roles and behaves as if your local system was a member of all roles defined.