default.rb 567 B

12345678910111213141516171819202122232425262728
  1. #
  2. # Cookbook:: workstation
  3. # Recipe:: default
  4. #
  5. # Copyright:: 2022, The Authors, All Rights Reserved.
  6. # Enable json file reports
  7. chef_handler 'Chef::Handler::JsonFile' do
  8. source 'chef/handler/json_file'
  9. arguments path: '/var/chef/reports'
  10. action :enable
  11. end
  12. # Configure repo
  13. include_recipe 'workstation::_apt'
  14. # Setup 'git'
  15. include_recipe 'workstation::_git'
  16. # Setup etckeeper
  17. include_recipe 'etckeeper'
  18. include_recipe 'etckeeper::commit'
  19. # Setup podman
  20. include_recipe 'workstation::_podman'
  21. # Install 'systemd-genie'
  22. include_recipe 'workstation::_genie'