-
-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct typing for IOReadIOPSMax, IOWriteIOPSMax,... in manage_unit a…
…nd manage_dropin. Useing any of the following directives in `systemd::manage_dropin` or `systemd::manage_unit` resulted in a compilation error. * `IODeviceWeight` * `IOReadBandwidthMax` * `IOWriteBandwidthMax` * `IOReadIOPSMax` * `IOWriteIOPSMax` The types for these directives in `Systemd::Unit::Slice` and `Systemd::Unit::Service` have now been updated. Example usage: ```puppet systemd::manage_dropin { 'devicelimits.conf': unit => 'special.service', service_entry => { 'IOReadIOPSMax' => [ ['/dev/afs',100], ['/dev/gluster','1000K'], ], }, } ``` would result in a drop in file of: ```config [Service] IOReadIOPSMax=/dev/afs 100 IOReadIOPSMax=/dev/gluster 1000K ```
- Loading branch information
1 parent
5031e05
commit e42fe56
Showing
8 changed files
with
140 additions
and
29 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
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
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