]> git.openstreetmap.org Git - chef.git/commitdiff
systemd: Add LimitCPU support
authorGrant Slater <git@firefishy.com>
Fri, 21 Dec 2018 12:52:49 +0000 (12:52 +0000)
committerGrant Slater <git@firefishy.com>
Fri, 21 Dec 2018 12:52:49 +0000 (12:52 +0000)
cookbooks/systemd/resources/service.rb
cookbooks/systemd/templates/default/service.erb

index f0419b91146221fe333e5c8098c9d1e9d4e5231b..c2d125b1884a3adccabdcb8daf54f153b46b70d5 100644 (file)
@@ -28,6 +28,7 @@ property :type, String,
          :is => %w[simple forking oneshot dbus notify idle]
 property :limit_nofile, Integer
 property :limit_as, [Integer, String]
+property :limit_cpu, [Integer, String]
 property :memory_low, [Integer, String]
 property :memory_high, [Integer, String]
 property :memory_max, [Integer, String]
index 4cac416f75f17dee5fa74a019a04e37444892c54..151b017902b78af3ff7415c0e48ab26147d76780 100644 (file)
@@ -17,6 +17,9 @@ LimitNOFILE=<%= @limit_nofile %>
 <% if @limit_as -%>
 LimitAS=<%= @limit_as %>
 <% end -%>
+<% if @limit_cpu -%>
+LimitCPU=<%= @limit_cpu %>
+<% end -%>
 <% if @memory_low -%>
 MemoryLow=<%= @memory_low %>
 <% end -%>