_podman.rb 399 B

1234567891011121314151617181920
  1. #
  2. # Cookbook:: workstation
  3. # Recipe:: _podman
  4. #
  5. # Copyright:: 2022, The Authors, All Rights Reserved.
  6. include_recipe 'podamn::default'
  7. # TODO: use gem 'inifile' instead of this
  8. file '/etc/containers/containers.conf.d/99wsl2.conf' do
  9. owner 'root'
  10. group 'root'
  11. mode '0755'
  12. content <<~_WSL2
  13. [engine]
  14. cgroup_manager = "cgroupfs"
  15. events_logger = "file"
  16. _WSL2
  17. action :create
  18. end