From edc951b5db9408aa2d96d1cb76a66cc97ad44eb4 Mon Sep 17 00:00:00 2001 From: Jordi Prats Date: Sat, 25 Feb 2017 13:03:51 +0100 Subject: [PATCH 1/2] corretgit default unask doc --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 19933db..76f8dff 100644 --- a/README.md +++ b/README.md @@ -207,7 +207,7 @@ root 7173 0.0 0.0 107896 608 ? S 10:34 0:00 \_ sleep 10m * **working_directory**: Takes a directory path relative to the service's root directory specified by RootDirectory= (default: undef) * **root_directory**: Sets the root directory for executed processes, with the chroot(2) system call (default: undef) * **environment_files**: Similar to **env_vars** but reads the environment variables from a text file. The text file should contain new-line-separated variable assignments. Empty lines, lines without an "=" separator, or lines starting with ; or # will be ignored, which may be used for commenting. A line ending with a backslash will be concatenated with the following one, allowing multiline variable definitions (default: undef) -* **umask**: Controls the file mode creation mask. Takes an access mode in octal notation. (default: 0022) +* **umask**: Controls the file mode creation mask. Takes an access mode in octal notation. (default: undef) * **nice**: Sets the default nice level (scheduling priority) for executed processes. Takes an integer between -20 *highest priority* and 19 *lowest priority* (default: undef) * **oom_score_adjust**: Sets the adjustment level for the **Out-Of-Memory killer** for executed processes. Takes an integer between -1000 *to disable OOM killing* and 1000 *to make killing of this process under memory pressure very likely* (default: undef) From 937680b32503930942c48401d0b711ea6f72a32a Mon Sep 17 00:00:00 2001 From: Jordi Prats Date: Sat, 25 Feb 2017 19:59:33 +0100 Subject: [PATCH 2/2] updated docs an changelog --- CHANGELOG.md | 9 +++++++-- README.md | 2 ++ metadata.json | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04b4790..a0422e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,14 @@ # CHANGELOG +## 0.1.23 + +* Added StartLimitInterval and StartLimitBurst - thanks to [steveniemitz](https://github.com/steveniemitz) for this PR +* Fixed UMask casing and removed redundant default - thanks to [steveniemitz](https://github.com/steveniemitz) for this PR + ## 0.1.22 * added to **systemd::service** - * environment_files - thanks to **oOHenry** for this PR + * environment_files - thanks to [oOHenry](https://github.com/oOHenry) for this PR * umask * nice * oom_score_adjust @@ -49,7 +54,7 @@ ## 0.1.17 -* added **env_vars** - thanks to **dzmitryv** for this PR +* added **env_vars** - thanks to [dzmitryv](https://github.com/dzmitryv) for this PR * added options: * after * remain_after_exit diff --git a/README.md b/README.md index 76f8dff..259019d 100644 --- a/README.md +++ b/README.md @@ -210,6 +210,8 @@ root 7173 0.0 0.0 107896 608 ? S 10:34 0:00 \_ sleep 10m * **umask**: Controls the file mode creation mask. Takes an access mode in octal notation. (default: undef) * **nice**: Sets the default nice level (scheduling priority) for executed processes. Takes an integer between -20 *highest priority* and 19 *lowest priority* (default: undef) * **oom_score_adjust**: Sets the adjustment level for the **Out-Of-Memory killer** for executed processes. Takes an integer between -1000 *to disable OOM killing* and 1000 *to make killing of this process under memory pressure very likely* (default: undef) +* **startlimitinterval**: Configures the checking interval (default: undef) +* **startlimitburst**: Configures how many starts per interval are allowed (default: undef) #### systemd::sysvwrapper diff --git a/metadata.json b/metadata.json index 31ae119..4f0245b 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "eyp-systemd", - "version": "0.1.22", + "version": "0.1.23", "author": "eyp", "summary": "management of systemd services (/etc/systemd/system/...)", "license": "Apache-2.0",