default.rb 367 B

12345678910111213141516171819
  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. # Specific to WSL2:
  9. # Ref: https://www.redhat.com/sysadmin/podman-windows-wsl2
  10. #
  11. directory '/etc/containers/containers.conf.d' do
  12. owner 'root'
  13. group 'root'
  14. mode '0755'
  15. action :create
  16. end