ports/sysutils/py-salt/files/pkg-message.in
Ben Woods acf30df658 Update sysutils/py-salt to 2017.7.1
- Includes fix for security vulnerability CVE-2017-12791
- Include patch to fix bug in the freebsdservice module [1]
- Add TCP transport option
- Clarify the port options for transports only install the runtime dependencies
- Add note to pkg-message explaining how to change to non-default transports
- Change supported python releases to exclude 2.6 and allow python3 [2]
- Only depend on py-enum34 if python version is < 3.4 (included in python >= 3.4)
- Reorder Makefile to move OPTIONS after USES/USE/standard variables [3]
- Ensure Makefile lists are sorted alphabetically

[1] https://github.com/saltstack/salt/issues/36675#issuecomment-323586323
[2] https://docs.saltstack.com/en/latest/topics/releases/2017.7.0.html#python-3
[3] https://www.freebsd.org/doc/en/books/porters-handbook/porting-order.html

Changes this release:
  https://docs.saltstack.com/en/latest/topics/releases/2017.7.0.html
  https://docs.saltstack.com/en/latest/topics/releases/2017.7.1.html

PR:		220869
Reported by:	Christer Edwards <christer.edwards@gmail.com> (maintainer)
Approved by:	Christer Edwards <christer.edwards@gmail.com> (maintainer)
Security:	CVE-2017-12791
Security:	https://vuxml.freebsd.org/freebsd/3531141d-a708-477c-954a-2a0549e49ca9.html
2017-08-22 23:02:21 +00:00

36 lines
1.5 KiB
Text

===================================================================================================
To configure a Salt Master, do the following:
o Copy %%PREFIX%%/etc/salt/master.sample to %%PREFIX%%/etc/salt/master
o Update to meet your needs
o sysrc salt_master_enable="YES"
---------------------------------------------------------------------------------------------------
To configure a Salt Minion, do the following:
o Copy %%PREFIX%%/etc/salt/minion.sample to %%PREFIX%%/etc/salt/minion
o Update 'master: salt' to point to your Salt Master's hostname or IP
o sysrc salt_minion_enable="YES"
---------------------------------------------------------------------------------------------------
To configure a Salt Proxy Minion, do the following:
o sysrc salt_proxy_enable="YES"
o sysrc salt_proxy_list=""
o Update the salt_proxy_list with the proxy minion name(s)
---------------------------------------------------------------------------------------------------
To change the Transport method from the default option of Zeromq to either TCP or RAET:
o Re-build the port with the desired options enabled to install the correct runtime dependencies
o Ensure the master and minions all have salt installed with these same options and dependencies
o Add the line 'transport: [tcp|raet]' to both the master and minion configuration files
o Restart salt on the master and minions
===================================================================================================