summaryrefslogtreecommitdiff
path: root/templates/limits.erb
diff options
context:
space:
mode:
Diffstat (limited to 'templates/limits.erb')
-rw-r--r--templates/limits.erb26
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/limits.erb b/templates/limits.erb
new file mode 100644
index 0000000..3caf586
--- /dev/null
+++ b/templates/limits.erb
@@ -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 %>