_packages.rb 549 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #
  2. # Cookbook:: workstation
  3. # Recipe:: _packages
  4. #
  5. # Copyright:: 2022, The Authors, All Rights Reserved.
  6. #
  7. package %w{
  8. moreutils
  9. debian-goodies
  10. bash-completion
  11. vim
  12. dnsutils
  13. whois
  14. iproute2
  15. apt-file
  16. mc
  17. curl
  18. wget
  19. grc
  20. jq
  21. lftp
  22. lsof
  23. openssh-client
  24. plocate
  25. smem
  26. sudo
  27. } do
  28. notifies :run, 'execute[/usr/bin/apt-file update]', :immediately
  29. notifies :run, 'execute[/usr/bin/updatedb]', :immediately
  30. end
  31. execute '/usr/bin/apt-file update' do
  32. action :nothing
  33. end
  34. execute '/usr/bin/updatedb' do
  35. action :nothing
  36. end