diff --git a/CHANGELOG.md b/CHANGELOG.md index aa4ec44..088894a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,98 +1,103 @@ +##2015-03-31 - Release 1.4.2 + +###Fixes +- Typo in dns-nameservers fixed + ##2015-03-30 - Release 1.4.1 ##Summary New feature helper for configuring DNS nameservers and search via resolvconf. ##2015-03-16 - Release 1.3.1 ###Summary Fixed issue #2 ###Fixes - bridge and bond resources were not able to access package names declared in params.pp ##2015-03-15 - Release 1.3.0 ###Summary New feature helper allows declaring static routes on interfaces. ###Features - feature helper of static routes added ##2015-03-12 - Release 1.2.1 ###Summary - Bugfix, to resolve dependency problems to newer versions of concat and stdlib modules. ###Features - feature helper for static routes added ###Fixes - Minor improvements in documentation - Metadata fixed. ##2015-02-26 - Release 1.2.0 ###Summary Introduction of feature helpers. Configurable bridge parameters extended. ###Features - feature helper tx_queue added for setting tx queue length of an interface - added attributes maxage and maxwait to bridge ##2015-02-05 - Release 1.1.1 ###Summary Documentation bugfixes. ###Features ###Bugfixes - requirements corrected - README links fixed ##2015-02-04 - Release 1.1.0 ###Summary Operating system support tested. Up and down hooks now available for many resources. ###Features - support for Debian 6 and Ubuntu 12.04 added to metadata.json - added support for up/down hooks to resources bond, bridge, dhcp, loopback and static ##2015-01-20 - Release 1.0.1 ###Summary Bugfix. ###Changes - Validation of bonding attributes fixed. ##2015-01-20 - Release 1.0.0 ###Summary Added support for bonding and removed the need of including the module. ###Changes - including the module is not necessary anymore ###Features - support for bonding devices ##2014-12-27 - Release 0.3.1 ###Summary Minor refactoring, documentation and metadata improvements. ####Fixes - Metadata fixes to improve quality measures. - Some lint warnings with bridge.pp fixed. - Documentation fixed. ##2014-12-27 - Release 0.3.0 ###Summary New feature for configuring bridge interfaces. diff --git a/metadata.json b/metadata.json index fc89b0e..33b6542 100644 --- a/metadata.json +++ b/metadata.json @@ -1,23 +1,23 @@ { "name": "trepasi-debnet", - "version": "1.4.1", + "version": "1.4.2", "author": "T. Repasi", "summary": "Puppet module to manage /etc/network/interface file on Debian based Linux systems.", "tags": ["network","interfaces","ifup","ifdown","bridge","bonding"], "license": "Apache-2.0", "project_page": "https://github.com/rtib/tib-debnet.git", "source": "https://github.com/rtib/tib-debnet.git", "issues_url":"https://github.com/rtib/tib-debnet/issues", "operatingsystem_support": [ {"operatingsystem": "Debian", "operatingsystemrelease": ["6","7"] }, {"operatingsystem": "Ubuntu", "operatingsystemrelease": ["12.04","14.04"] } ], "dependencies": [ {"name":"puppetlabs/concat","version_requirement":">= 1.1.1 < 2.0.0"}, {"name":"puppetlabs/stdlib","version_requirement":">= 4.3.2 < 5.0.0"} ], "requirements": [ {"name": "pe", "version_requirement": "3.x" }, {"name": "puppet", "version_requirement": ">=2.7.20 <4.0.0" } ] } diff --git a/templates/iface_aux.erb b/templates/iface_aux.erb index dcb9e2d..22b6ecd 100644 --- a/templates/iface_aux.erb +++ b/templates/iface_aux.erb @@ -1,24 +1,24 @@ <% @aux_ops.keys.sort.each do |k| -%> <%= k -%> <%= @aux_ops[k] %> <% end -%> <% @pre_ups.each do |pu| -%> pre-up <%= pu %> <% end -%> <% if @tx_queue -%> up ip link set <%= @ifname -%> txqueuelen <%= @tx_queue %> <% end -%> <% @ups.each do |u| -%> up <%= u %> <% end -%> <% @downs.each do |d| -%> down <%= d %> <% end -%> <% @post_downs.each do |pd| -%> post-down <%= pd %> <% end -%> <% if @dns_nameservers -%> - dns-namservers <% @dns_nameservers.each do |ns| -%><%= ns -%> <% end %> + dns-nameservers <% @dns_nameservers.each do |ns| -%><%= ns -%> <% end %> <% end -%> <% if @dns_search -%> dns-search <% @dns_search.each do |search| -%><%= search -%> <% end %> <% end -%>