Commit 13db7f54 authored by Rafael Monnerat's avatar Rafael Monnerat

Update Release candidate

parents bdfeae02 c45b52af
Changes Changes
======= =======
1.0.52 (2017-07-04)
-------------------
* wrapper: Add option to reserve CPU core
* slapconfiguration: Recipe reads partitions resource file
* neoppod: add support for new --disable-drop-partitions storage option
* random: Fix the monkeypatch in random.py to incorporate the recent changes in buildout 'get' function
* random: Add Integer recipe.
* librecipe.execute: Notify on file moved
* zero_knowledge: allow to set destination folder of configuration file
1.0.50 (2017-04-18) 1.0.50 (2017-04-18)
------------------- -------------------
...@@ -11,19 +23,19 @@ Changes ...@@ -11,19 +23,19 @@ Changes
1.0.48 (2017-01-31) 1.0.48 (2017-01-31)
------------------- -------------------
* random-recipe: add option create-once to prevent storage file deletion by buildout * random-recipe: add option create-once to prevent storage file deletion by buildout
1.0.45 (2017-01-09) 1.0.45 (2017-01-09)
------------------- -------------------
* recipe: set default timeout of check url promise to 20 seconds * recipe: set default timeout of check url promise to 20 seconds
1.0.44 (2016-12-30) 1.0.44 (2016-12-30)
------------------- -------------------
* pbs: handles the fact that some parameters are not present when slaves are down * pbs: handles the fact that some parameters are not present when slaves are down
* recipe: allow usage of pidfile in wrapper recipe * recipe: allow usage of pidfile in wrapper recipe
* sshd: fix generation of authorized_keys * sshd: fix generation of authorized_keys
1.0.43 (2016-11-24) 1.0.43 (2016-11-24)
------------------- -------------------
......
...@@ -28,7 +28,7 @@ from setuptools import setup, find_packages ...@@ -28,7 +28,7 @@ from setuptools import setup, find_packages
import glob import glob
import os import os
version = '1.0.51.dev0' version = '1.0.52'
name = 'slapos.cookbook' name = 'slapos.cookbook'
long_description = open("README.rst").read() + "\n" + \ long_description = open("README.rst").read() + "\n" + \
open("CHANGES.rst").read() + "\n" open("CHANGES.rst").read() + "\n"
......
...@@ -157,7 +157,7 @@ post = test ! -s ${apache-conf-parameter-dict:pid-file} || {{ bin_directory }}/s ...@@ -157,7 +157,7 @@ post = test ! -s ${apache-conf-parameter-dict:pid-file} || {{ bin_directory }}/s
[publish] [publish]
recipe = slapos.cookbook:publish.serialised recipe = slapos.cookbook:publish.serialised
{% for family_name, (apache_port, scheme, _) in apache_dict.items() -%} {% for family_name, (apache_port, scheme, _, _) in apache_dict.items() -%}
{{ family_name ~ '-v6' }} = {% if ipv6_set %}{{ scheme ~ '://[' ~ ipv6 ~ ']:' ~ apache_port }}{% endif %} {{ family_name ~ '-v6' }} = {% if ipv6_set %}{{ scheme ~ '://[' ~ ipv6 ~ ']:' ~ apache_port }}{% endif %}
{{ family_name }} = {{ scheme ~ '://' ~ ipv4 ~ ':' ~ apache_port }} {{ family_name }} = {{ scheme ~ '://' ~ ipv4 ~ ':' ~ apache_port }}
{% endfor -%} {% endfor -%}
......
...@@ -83,5 +83,5 @@ template-logrotate-base = ${template-logrotate-base:rendered} ...@@ -83,5 +83,5 @@ template-logrotate-base = ${template-logrotate-base:rendered}
[template-cloudooo-instance] [template-cloudooo-instance]
recipe = slapos.recipe.build:download recipe = slapos.recipe.build:download
url = ${:_profile_base_location_}/instance-cloudooo.cfg.in url = ${:_profile_base_location_}/instance-cloudooo.cfg.in
md5sum = 0a260754586e2a44010f3303c58a927a md5sum = 045830db85e1200f765788aa8b62289e
mode = 640 mode = 640
...@@ -135,7 +135,7 @@ pytz = 2016.10 ...@@ -135,7 +135,7 @@ pytz = 2016.10
requests = 2.13.0 requests = 2.13.0
setuptools = 33.1.1 setuptools = 33.1.1
six = 1.10.0 six = 1.10.0
slapos.cookbook = 1.0.50 slapos.cookbook = 1.0.52
slapos.core = 1.3.18 slapos.core = 1.3.18
slapos.extension.strip = 0.4 slapos.extension.strip = 0.4
slapos.libnetworkcache = 0.15 slapos.libnetworkcache = 0.15
...@@ -164,7 +164,7 @@ functools32 = 3.2.3.post2 ...@@ -164,7 +164,7 @@ functools32 = 3.2.3.post2
ipaddress = 1.0.18 ipaddress = 1.0.18
# Required by: # Required by:
# slapos.cookbook==1.0.50 # slapos.cookbook==1.0.52
jsonschema = 2.6.0 jsonschema = 2.6.0
# Required by: # Required by:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment