12345678910111213141516171819 |
- #
- # Cookbook:: podman
- # Recipe:: default
- #
- # Copyright:: 2022, The Authors, All Rights Reserved.
- include_recipe 'podman::_repository'
- include_recipe 'podman::_packages'
- # Specific to WSL2:
- # Ref: https://www.redhat.com/sysadmin/podman-windows-wsl2
- #
- directory '/etc/containers/containers.conf.d' do
- owner 'root'
- group 'root'
- mode '0755'
- action :create
- end
|