salt/doc/topics/releases/0.9.6.rst

50 lines
1.7 KiB
ReStructuredText
Raw Normal View History

2012-01-22 06:08:23 +00:00
========================
Salt 0.9.6 Release Notes
========================
2013-12-26 21:12:56 +00:00
:release: 2012-01-21
2012-01-22 06:08:23 +00:00
Salt 0.9.6 is a release targeting a few bugs and changes. This is primarily
targeting an issue found in the names declaration in the state system. But a
few other bugs were also repaired, like missing support for grains in extmods.
Due to a conflict in distribution packaging msgpack will no longer be bundled
with Salt, and is required as a dependency.
New Features
============
HTTP and ftp support in files.managed
2012-01-22 06:08:23 +00:00
-------------------------------------
Now under the source option in the file.managed state a HTTP or ftp address
2012-01-22 06:08:23 +00:00
can be used instead of a file located on the salt master.
Allow Multiple Returners
------------------------
Now the returner interface can define multiple returners, and will also return
2012-01-23 00:55:16 +00:00
data back to the master, making the process less ambiguous.
2012-01-22 06:08:23 +00:00
Minion Memory Improvements
--------------------------
A number of modules have been taken out of the minion if the underlying
systems required by said modules are not present on the minion system.
A number of other modules need to be stripped out in this same way which
should continue to make the minion more efficient.
Minions Can Locally Cache Return Data
-------------------------------------
A new option, cache_jobs, has been added to the minion to allow for all of the
historically run jobs to cache on the minion, allowing for looking up historic
returns. By default cache_jobs is set to False.
Pure Python Template Support For file.managed
---------------------------------------------
2012-05-23 04:43:12 +00:00
Templates in the file.managed state can now be defined in a Python script.
2012-01-22 06:08:23 +00:00
This script needs to have a run function that returns the string that needs to
be in the named file.