123456789101112131415161718192021 |
- #
- # Cookbook:: workstation
- # Recipe:: default
- #
- # Copyright:: 2022, The Authors, All Rights Reserved.
- # Enable json file reports
- chef_handler 'Chef::Handler::JsonFile' do
- source 'chef/handler/json_file'
- arguments path: '/var/chef/reports'
- action :enable
- end
- # Configure repo
- include_recipe 'workstation::_apt'
- # Setup podman
- include_recipe 'workstation::_podman'
- # Setup etckeeper
- include_recipe 'etckeeper'
- include_recipe 'etckeeper::commit'
|