mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
48 lines
1.5 KiB
ReStructuredText
48 lines
1.5 KiB
ReStructuredText
=================
|
|
Client ACL system
|
|
=================
|
|
|
|
The salt client ACL system is a means to allow system users other than root to
|
|
have access to execute select salt commands on minions from the master.
|
|
|
|
The client ACL system is configured in the master configuration file via the
|
|
``client_acl`` configuration option. Under the ``client_acl`` configuration
|
|
option the users open to send commands are specified and then a list of regular
|
|
expressions which specify the minion functions which will be made available to
|
|
specified user. This configuration is much like the ``peer`` configuration:
|
|
|
|
.. code-block:: yaml
|
|
|
|
# Allow thatch to execute anything and allow fred to use ping and pkg
|
|
client_acl:
|
|
thatch:
|
|
- .*
|
|
fred:
|
|
- test.*
|
|
- pkg.*
|
|
|
|
Permission Issues
|
|
=================
|
|
|
|
Directories required for ``client_acl`` must be modified to be readable by the
|
|
users specified:
|
|
|
|
.. code-block:: bash
|
|
|
|
chmod 755 /var/cache/salt /var/cache/salt/jobs /var/run/salt
|
|
|
|
.. note::
|
|
|
|
In addition to the changes above you will also need to modify the
|
|
permissions of /var/log/salt and the existing log file. If you do not
|
|
wish to do this then you must disable logging or Salt will generate
|
|
errors as it cannot write to the logs as the system users.
|
|
|
|
If you are upgrading from earlier versions of salt you must also remove any
|
|
existing user keys and re-start the Salt master:
|
|
|
|
.. code-block:: bash
|
|
|
|
rm /var/cache/salt/.*key
|
|
service salt-master restart
|