-
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
User can configure resource limits for services started by systemd
- Loading branch information
Showing
4 changed files
with
102 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# -- Define: systemd::service_limits | ||
# Creates a custom config file and reloads systemd | ||
define systemd::service_limits( | ||
$ensure = file, | ||
$path = '/etc/systemd/system', | ||
$limits = undef, | ||
$source = undef, | ||
$restart_service = true | ||
) { | ||
include ::systemd | ||
|
||
if $limits { | ||
validate_hash($limits) | ||
$content = template('systemd/limits.erb') | ||
} | ||
else { | ||
$content = undef | ||
} | ||
|
||
if $limits and $source { | ||
fail('You may not supply both limits and source parameters to systemd::service_limits') | ||
} elsif $limits == undef and $source == undef { | ||
fail('You must supply either the limits or source parameter to systemd::service_limits') | ||
} | ||
|
||
file { "${path}/${title}.d/": | ||
ensure => 'directory', | ||
owner => 'root', | ||
group => 'root', | ||
} | ||
-> | ||
file { "${path}/${title}.d/limits.conf": | ||
ensure => $ensure, | ||
content => $content, | ||
source => $source, | ||
owner => 'root', | ||
group => 'root', | ||
mode => '0444', | ||
notify => Exec['systemctl-daemon-reload'], | ||
} | ||
|
||
if $restart_service { | ||
exec { "systemctl restart ${title}": | ||
path => $::path, | ||
refreshonly => true, | ||
subscribe => File["${path}/${title}.d/limits.conf"], | ||
require => Exec['systemctl-daemon-reload'], | ||
} | ||
} | ||
} |
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,26 @@ | ||
# This file is created by Puppet | ||
[Service] | ||
<% | ||
[ | ||
'LimitCPU', | ||
'LimitFSIZE', | ||
'LimitDATA', | ||
'LimitSTACK', | ||
'LimitCORE', | ||
'LimitRSS', | ||
'LimitNOFILE', | ||
'LimitAS', | ||
'LimitNPROC', | ||
'LimitMEMLOCK', | ||
'LimitLOCKS', | ||
'LimitSIGPENDING', | ||
'LimitMSGQUEUE', | ||
'LimitNICE', | ||
'LimitRTPRIO', | ||
'LimitRTTIME' | ||
].each do |d| | ||
if @limits[d] -%> | ||
<%= d %>=<%= @limits[d] %> | ||
<% | ||
end | ||
end %> |