├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .mdlrc ├── .rubocop.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Compile-Time-Run-Time.md ├── Gemfile ├── LICENSE ├── Philosophy.md ├── README.md ├── between-meals └── MOVED ├── chef-server-stats ├── chef-server-stats ├── folsom-stats └── real-time-pool-stats ├── chefctl ├── README.md ├── sample_configs │ └── chefctl-config.rb ├── sample_hooks │ ├── chefctl_hooks.rb │ ├── custom_attrs.rb │ └── retry_on_log_message.rb ├── src │ ├── chefctl.rb │ └── spec │ │ └── chefctl_spec.rb └── systemd │ ├── chef.service │ └── chef.timer ├── cookbooks └── README.md ├── grocery-delivery └── MOVED ├── scripts └── run_rubocop └── taste-tester └── MOVED /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | .rubocop-https* 3 | -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/.mdlrc -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Compile-Time-Run-Time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/Compile-Time-Run-Time.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /Philosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/Philosophy.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/README.md -------------------------------------------------------------------------------- /between-meals/MOVED: -------------------------------------------------------------------------------- 1 | Moved to http://github.com/facebook/between-meals 2 | -------------------------------------------------------------------------------- /chef-server-stats/chef-server-stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/chef-server-stats/chef-server-stats -------------------------------------------------------------------------------- /chef-server-stats/folsom-stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/chef-server-stats/folsom-stats -------------------------------------------------------------------------------- /chef-server-stats/real-time-pool-stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/chef-server-stats/real-time-pool-stats -------------------------------------------------------------------------------- /chefctl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/chefctl/README.md -------------------------------------------------------------------------------- /chefctl/sample_configs/chefctl-config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/chefctl/sample_configs/chefctl-config.rb -------------------------------------------------------------------------------- /chefctl/sample_hooks/chefctl_hooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/chefctl/sample_hooks/chefctl_hooks.rb -------------------------------------------------------------------------------- /chefctl/sample_hooks/custom_attrs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/chefctl/sample_hooks/custom_attrs.rb -------------------------------------------------------------------------------- /chefctl/sample_hooks/retry_on_log_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/chefctl/sample_hooks/retry_on_log_message.rb -------------------------------------------------------------------------------- /chefctl/src/chefctl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/chefctl/src/chefctl.rb -------------------------------------------------------------------------------- /chefctl/src/spec/chefctl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/chefctl/src/spec/chefctl_spec.rb -------------------------------------------------------------------------------- /chefctl/systemd/chef.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/chefctl/systemd/chef.service -------------------------------------------------------------------------------- /chefctl/systemd/chef.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/chefctl/systemd/chef.timer -------------------------------------------------------------------------------- /cookbooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/cookbooks/README.md -------------------------------------------------------------------------------- /grocery-delivery/MOVED: -------------------------------------------------------------------------------- 1 | Moved to http://github.com/facebook/grocery-delivery 2 | -------------------------------------------------------------------------------- /scripts/run_rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/chef-utils/HEAD/scripts/run_rubocop -------------------------------------------------------------------------------- /taste-tester/MOVED: -------------------------------------------------------------------------------- 1 | Moved to http://github.com/facebook/taste-tester 2 | --------------------------------------------------------------------------------