salt/doc/topics/releases/0.8.9.rst

155 lines
3.7 KiB
ReStructuredText
Raw Normal View History

2011-07-09 23:03:25 +00:00
========================
2011-07-10 19:17:33 +00:00
Salt 0.8.9 Release Notes
2011-07-09 23:03:25 +00:00
========================
Salt 0.8.9 has finally arrived! Unfortunately this is much later than I had
hoped to release 0.8.9, life has been very crazy over the last month. But
despite challenges, Salt has moved forward!
This release, as expected, adds few new features and many refinements. One
of the most exciting aspect of this release is that the development community
for salt has grown a great deal and much of the code is from contributors.
Also, I have filled out the documentation a great deal. So information on
States is properly documented, and much of the documentation that was out of
date has been filled in.
2011-07-10 19:17:33 +00:00
Download!
---------
The Salt source can be downloaded from PyPI:
2011-07-10 19:17:33 +00:00
https://pypi.python.org/packages/source/s/salt/salt-0.8.9.tar.gz
2011-07-10 19:17:33 +00:00
Here s the md5sum:
7d5aca4633bc22f59045f59e82f43b56
2012-10-04 21:30:13 +00:00
For instructions on how to set up Salt please see the :ref:`installation`
instructions.
2011-07-10 19:17:33 +00:00
2011-07-09 23:03:25 +00:00
New Features
------------
Salt Run
````````
A big feature is the addition of Salt run, the ``salt-run`` command allows for
master side execution modules to be made that gather specific information or
execute custom routines from the master.
Documentation for salt-run can be found :ref:`here <runners>`
2011-07-09 23:03:25 +00:00
Refined Outputters
``````````````````
One problem often complained about in salt was the fact that the output was
so messy. Thanks to help from Jeff Schroeder a cleaner interface for the
command output for the Salt CLI has been made. This new interface makes
2011-07-09 23:03:25 +00:00
adding new printout formats easy and additions to the capabilities of minion
modules makes it possible to set the printout mode or ``outputter`` for
functions in minion modules.
Cross Calling Salt Modules
```````````````````````````
Salt modules can now call each other, the ``__salt__`` dict has been added to
the predefined references in minion modules. This new feature is documented in
the :ref:`modules documentation <writing-execution-modules>`.
2011-07-09 23:03:25 +00:00
Watch Option Added to Salt State System
````````````````````````````````````````
Now in Salt states you can set the watch option, this will allow watch enabled
states to change based on a change in the other defined states. This is similar
to subscribe and notify statements in puppet.
Root Dir Option
```````````````
Travis Cline has added the ability to define the option ``root_dir`` which
allows the salt minion to operate in a subdir. This is a strong move in
supporting the minion running as an unprivileged user
Config Files Defined in Variables
`````````````````````````````````
Thanks again to Travis Cline, the master and minion configuration file locations
can be defined in environment variables now.
New Modules
-----------
2014-12-12 19:31:43 +00:00
Quite a few new modules, states, returners, and runners have been made.
2011-07-09 23:03:25 +00:00
New Minion Modules
``````````````````
apt
~~~
Support for apt-get has been added, this adds greatly improved Debian and
Ubuntu support to Salt!
useradd and groupadd
~~~~~~~~~~~~~~~~~~~~
Support for manipulating users and groups on Unix-like systems.
moosefs
~~~~~~~
Initial support for reporting on aspects of the distributed file system,
MooseFS. For more information on MooseFS please see: http://www.moosefs.org
2011-07-09 23:03:25 +00:00
Thanks to Joseph Hall for his work on MooseFS support.
mount
~~~~~
Manage mounts and the fstab.
puppet
~~~~~~
Execute puppet on remote systems.
shadow
~~~~~~
Manipulate and manage the user password file.
ssh
~~~
Interact with ssh keys.
New States
``````````
user and group
~~~~~~~~~~~~~~
Support for managing users and groups in Salt States.
mount
~~~~~
Enforce mounts and the fstab.
New Returners
`````````````
mongo_return
~~~~~~~~~~~~
Send the return information to a MongoDB server.
2011-07-09 23:03:25 +00:00
New Runners
```````````
manage
~~~~~~
Display minions that are up or down.