-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(SIMP-6244) Update file_create_mode for local rule (#93)
* (SIMP-6244) Update file_create_mode for local rule - Set rsyslog::rule::local::file_create_mode to 0640 by default - Allow the following to be set directly via Hiera using simplib::dlookup: - rsyslog::rule::local::file_create_mode - rsyslog::rule::local::dir_create_mode - rsyslog::rule::local::queue_max_file_size - Change dir_create_mode to 750 by default SIMP-6244 #close
- Loading branch information
1 parent
38d16ad
commit 09eb7cc
Showing
5 changed files
with
88 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
* Mon Apr 15 2019 Trevor Vaughan <[email protected]> - 7.4.0-0 | ||
- Set rsyslog::rule::local::file_create_mode to 0640 by default | ||
- Allow the following to be set directly via Hiera using simplib::dlookup: | ||
- rsyslog::rule::local::file_create_mode | ||
- rsyslog::rule::local::dir_create_mode | ||
- rsyslog::rule::local::queue_max_file_size | ||
|
||
* Tue Mar 26 2019 Joseph Sharkey <[email protected]> - 7.4.0-0 | ||
- Updated dependencies to use camptocamp/systemd | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Rsyslog Queue Types | ||
# | ||
type Rsyslog::QueueType = Enum[ | ||
'FixedArray', | ||
'LinkedList', | ||
'Direct', | ||
'Disk' | ||
] |