default.rb 400 B

1234567891011121314151617181920
  1. #
  2. # Cookbook:: podman
  3. # Recipe:: default
  4. #
  5. # Copyright:: 2022, The Authors, All Rights Reserved.
  6. include_recipe 'podman::_repository'
  7. include_recipe 'podman::_packages'
  8. include_recipe 'podman::_sysctl'
  9. # Specific to WSL2:
  10. # Ref: https://www.redhat.com/sysadmin/podman-windows-wsl2
  11. #
  12. directory '/etc/containers/containers.conf.d' do
  13. owner 'root'
  14. group 'root'
  15. mode '0755'
  16. action :create
  17. end