diff --git a/doc/topics/tutorials/standalone_minion.rst b/doc/topics/tutorials/standalone_minion.rst index f020b8ca0e..68419baf1e 100644 --- a/doc/topics/tutorials/standalone_minion.rst +++ b/doc/topics/tutorials/standalone_minion.rst @@ -31,6 +31,8 @@ this data from the master. Now the salt-call command will not look for a master and will assume that the local system has all of the file ad pillar resources. + + Running States Masterless ========================= @@ -59,11 +61,11 @@ This makes it easy to "script" deployments with Salt states without having to set up a master, and allows for these SLS modules to be easily moved into a Salt master as the deployment grows. -You can run your states use:: +Now the declared state can now be executed with:: salt-call state.highstate -If you didn't change your ``file_client`` to ``local``, you can still run -salt-masterless with bellow command:: +Or the salt-call command can be executed with the `--local` flag, this makes it +unnecessary to change the configuration file:: - salt-call --local state.highstate + salt-call state.highstate --loca