diff --git a/Changelog.rst b/Changelog.rst index 3e1a673c..8b619d0d 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,6 +3,9 @@ Changelog ========= +3.3.0 (? ? ?) +------------- + 3.2.2 (13 July 2015) -------------------- diff --git a/curator/_version.py b/curator/_version.py index 29e4a941..ba41144e 100644 --- a/curator/_version.py +++ b/curator/_version.py @@ -1 +1 @@ -__version__ = '3.2.2' +__version__ = '3.3.0.dev2' diff --git a/docs/asciidoc/flags/timestring.asciidoc b/docs/asciidoc/flags/timestring.asciidoc index a69647af..a0ab4894 100644 --- a/docs/asciidoc/flags/timestring.asciidoc +++ b/docs/asciidoc/flags/timestring.asciidoc @@ -36,3 +36,6 @@ Show indices older than 30 days matching the `--timestring` `%Y%m%d`: ------------------------------------------------------------------------- curator show indices --older-than 30 --time-unit days --timestring %Y%m%d ------------------------------------------------------------------------- + +TIP: See the <> for information about escaping the `%` +symbol in systemd setups. diff --git a/docs/asciidoc/misc/faq.asciidoc b/docs/asciidoc/misc/faq.asciidoc index 5a6edfad..7aedbad5 100644 --- a/docs/asciidoc/misc/faq.asciidoc +++ b/docs/asciidoc/misc/faq.asciidoc @@ -227,3 +227,16 @@ timeout. Another potential resolution would be to have Curator connect to a client directly, rather than through a load balancer or proxy. ''''' + +[[escape-percent]] +== Q: How do I escape the `%` in the `--timestring` for use with systemd? + +[float] +A: A double percent, `%%`, fixes the problem. +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +As seen here: https://discuss.elastic.co/t/curator-how-to-escape-characters-of-timestring-in-systemd/25222/2 + + --timestring '%%Y.%%m.%%d' + +'''''