------------------------------------------------------------------- Mon Dec 16 21:28:31 UTC 2013 - lars@linux-schulserver.de - update to 1.4.1: * Misc fix updates ------------------------------------------------------------------- Thu Nov 28 13:54:02 UTC 2013 - kgronlund@suse.com - Update to release 1.4 - Highlighted new features: + Added do-until feature, which can be used to retry a failed task a specified number of times with a delay in-between the retries. + Added failed_when option for tasks, which can be used to specify logical statements that make it easier to determine when a task has failed, or to make it easier to ignore certain non-zero return codes for some commands. + Added the "subelement" lookup plugin, which allows iteration of the keys of a dictionary or items in a list. + Added the capability to use either paramiko or ssh for the inital setup connection of an accelerated playbook. + Automatically provide advice on common parser errors users encounter. + Deprecation warnings are now shown for legacy features: when_integer/etc, only_if, include+with_items, etc. Can be disabled in ansible.cfg + The system will now provide helpful tips around possible YAML syntax errors increasing ease of use for new users. + warnings are now shown for using {{ foo }} in loops and conditionals, and suggest leaving the variable expressions bare as per docs. + The roles search path is now configurable in ansible.cfg. 'roles_path' in the config setting. + Includes with parameters can now be done like roles for consistency: - { include: song.yml, year:1984, song:'jump' } + The name of each role is now shown before each task if roles are being used + Adds a "var=" option to the debug module for debugging variable data. "debug: var=hostvars['hostname']" and "debug: var=foo" are all valid syntax. + Variables in {{ format }} can be used as references even if they are structured data + Can force binding of accelerate to ipv6 ports. + the apt module will auto-install python-apt if not present rather than requiring a manual installation + the copy module is now recursive if the local 'src' parameter is a directory. + syntax checks now scan included task and variable files as well as main files - New modules and plugins: + cloud: ec2_eip -- manage AWS elastic IPs + cloud: ec2_vpc -- manage ec2 virtual private clouds + cloud: elasticcache -- Manages clusters in Amazon Elasticache + cloud: rax_network -- sets up Rackspace networks + cloud: rax_facts: retrieve facts about a Rackspace Cloud Server + cloud: rax_clb_nodes -- manage Rackspace cloud load balanced nodes + cloud: rax_clb -- manages Rackspace cloud load balancers + cloud: docker - instantiates/removes/manages docker containers + cloud: ovirt -- VM lifecycle controls for ovirt + files: acl -- set or get acls on a file + files: unarchive: pushes and extracts tarballs + files: synchronize: a useful wraper around rsyncing trees of files + system: firewalld -- manage the firewalld configuration + system: modprobe -- manage kernel modules on systems that support modprobe/rmmod + system: open_iscsi -- manage targets on an initiator using open-iscsi + system: blacklist: add or remove modules from the kernel blacklist + system: hostname - sets the systems hostname + utilities: include_vars -- dynamically load variables based on conditions. + packaging: zypper_repository - adds or removes Zypper repositories + packaging: urpmi - work with urpmi packages + packaging: swdepot - a module for working with swdepot + notification: grove - notifies to Grove hosted IRC channels + web_infrastructure: ejabberd_user: add and remove users to ejabberd + web_infrastructure: jboss: deploys or undeploys apps to jboss + source_control: github_hooks: manages GitHub service hooks + net_infrastructure: bigip_monitor_http: manages F5 BIG-IP LTM http monitors + net_infrastructure: bigip_monitor_tcp: manages F5 BIG-IP LTM TCP monitors + net_infrastructure: bigip_pool_member: manages F5 BIG-IP LTM pool members + net_infrastructure: bigip_node: manages F5 BIG-IP LTM nodes + net_infrastructure: openvswitch_port + net_infrastructure: openvswitch_bridge ------------------------------------------------------------------- Fri Nov 1 15:09:48 UTC 2013 - kgronlund@suse.com - Updated .spec file: + Remove deprecated fireball and node-fireball packages + Add dependency on python-keyczar + Add recommends for sshpass + Fix support for RHEL + Correct upstream URL + Use upstream release package for 1.3.4 + Re-add CHANGELOG.md + Re-added man3 man pages + Updated short description to match upstream description ------------------------------------------------------------------- Thu Oct 31 17:26:44 UTC 2013 - lars@linux-schulserver.de - update to 1.3.4: Highlighted new features: + accelerated mode: An enhanced fireball mode that requires zero bootstrapping and fewer requirements plus adds capabilities like sudo commands. + role defaults: Allows roles to define a set of variables at the lowest priority. These variables can be overridden by any other variable. + new /etc/ansible/facts.d allows JSON or INI-style facts to be provided from the remote node, and supports executable fact programs in this dir. Files must end in *.fact. + added the ability to make undefined template variables raise errors (see ansible.cfg) + (DOCS PENDING) sudo: True/False and sudo_user: True/False can be set at include and role level + added changed_when: (expression) which allows overriding whether a result is changed or not and can work with registered expressions + --extra-vars can now take a file as input, e.g., "-e @filename" and can also be formatted as YAML + external inventory scripts may now return host variables in one pass, which allows them to be much more efficient for large numbers of hosts + if --forks exceeds the numbers of hosts, it will be automatically reduced. Set forks to 0 and you get "as many forks as I have hosts" out of the box. + enabled error_on_undefined_vars by default, which will make errors in playbooks more obvious + role dependencies -- one role can now pull in another, with parameters of its own. + added the ability to have tasks execute even during a check run (always_run). + added the ability to set the maximum failure percentage for a group of hosts. ...and a lot more information can be found at /usr/share/doc/packages/ansible/CHANGELOG.md - removed man3 man pages - removed separate CHANGELOG.md source - now in upstream tarball ------------------------------------------------------------------- Sun Jun 30 20:05:47 UTC 2013 - lars@linux-schulserver.de - update to 1.2: + new feature: roles + massively improved variable support and conditionals + Pre and Post tasks provide greater controls to make rolling updates even smoother + added 32 new modules: ++ including a openSUSE package management module ++ added team chat notification modules for Flowdock, Hipchat, Campfire, IRC, and more ++ added monitoring modules to interact with New Relic, Airbrake, Pingdom, Pagerduty and Monit - added CHANGELOG.md to /usr/share/doc/packages/ansible/ to have the complete changelog at hand ------------------------------------------------------------------- Thu Apr 25 08:01:24 UTC 2013 - lars@linux-schulserver.de - require python-pyzmq on (open)SUSE ------------------------------------------------------------------- Thu Apr 18 07:42:43 UTC 2013 - lars@linux-schulserver.de - fix build on other distributions than openSUSE - License in SPDX format - added rpmlintrc ------------------------------------------------------------------- Wed Apr 17 11:04:04 UTC 2013 - lars@linux-schulserver.de - update to 1.1: + stderr shown when commands fail to parse + uses yaml.safe_dump in filter plugins + authentication Q&A no longer happens before --syntax-check, but after + ability to get hostvars data for nodes not in the setup cache yet + SSH timeout now correctly passed to native SSH connection plugin + raise an error when multiple when_ statements are provided + --list-hosts applies host limit selections better + (internals) template engine specifications to use template_ds everywhere + better error message when your host file can not be found + end of line comments now work in the inventory file + directory destinations now work better with remote md5 code + lookup plugin macros like $FILE and $ENV now work without returning arrays in variable definitions/playbooks + uses yaml.safe_load everywhere + able to add EXAMPLES to documentation via EXAMPLES docstring, rather than just in main documentation YAML + can set ANSIBLE_COW_SELECTION to pick other cowsay types (including random) + to_nice_yaml and to_nice_json available as Jinja2 filters that indent and sort + cowsay able to run out of macports (very important!) + improved logging for fireball mode + nicer error message when talking to an older system that needs a JSON module installed + 'magic' variable 'inventory_basedir' now gives path to inventory file + 'magic' variable 'vars' works like 'hostvars' but gives global scope variables, useful for debugging in templates mostly + conditionals can be used on plugins like add_host + ...and many more... - specfile cleanup - just recomend python-paramiko as the user can also use openssh ------------------------------------------------------------------- Tue Jan 22 13:47:16 UTC 2013 - julien.tognazzi@gmail.com - Merge changes from upstream