]> git.openstreetmap.org Git - chef.git/blob - cookbooks/podman/recipes/default.rb
podman: Increase podman-auto-update.service frequency
[chef.git] / cookbooks / podman / recipes / default.rb
1 #
2 # Cookbook:: podman
3 # Recipe:: default
4 #
5 # Copyright:: 2023, OpenStreetMap Foundation
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     https://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19
20 package %w[
21   podman
22   slirp4netns
23   uidmap
24 ]
25
26 ruby_block "subuid-containers" do
27   block do
28     File.open("/etc/subuid", "a") do |file|
29       file.puts("containers:2147483647:2147483648")
30     end
31   end
32   not_if "grep -q '^containers:' /etc/subuid"
33 end
34
35 ruby_block "subgid-containers" do
36   block do
37     File.open("/etc/subgid", "a") do |file|
38       file.puts("containers:2147483647:2147483648")
39     end
40   end
41   not_if "grep -q '^containers:' /etc/subgid"
42 end
43
44 service "podman-auto-update.timer" do
45   action [:enable, :start]
46 end
47
48 # Increase the frequency of podman auto updates
49 systemd_timer "podman-auto-update-frequency" do
50   description "Increased podman auto update frequency"
51   unit "podman-auto-update.service"
52   on_boot_sec "5m"
53   on_unit_inactive_sec "20m"
54   randomized_delay_sec "5m"
55 end
56
57 service "podman-auto-update-frequency.timer" do
58   action [:enable, :start]
59 end