├── .delivery └── project.toml ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── delivery.yml ├── .gitignore ├── .rubocop.yml ├── Berksfile ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TESTING.md ├── attributes └── default.rb ├── chefignore ├── files └── sudo ├── kitchen.yml ├── libraries ├── domain.rb └── rule.rb ├── metadata.rb ├── recipes └── default.rb ├── resources └── user.rb ├── spec ├── spec_helper.rb └── user_ulimit.rb ├── templates ├── domain.erb ├── su.erb └── ulimit.erb └── test ├── cookbooks └── test │ ├── metadata.rb │ └── recipes │ └── default.rb └── integration └── default └── default_spec.rb /.delivery/project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/.delivery/project.toml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/delivery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/.github/workflows/delivery.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/Berksfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/TESTING.md -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/chefignore -------------------------------------------------------------------------------- /files/sudo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/files/sudo -------------------------------------------------------------------------------- /kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/kitchen.yml -------------------------------------------------------------------------------- /libraries/domain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/libraries/domain.rb -------------------------------------------------------------------------------- /libraries/rule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/libraries/rule.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /resources/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/resources/user.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/user_ulimit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/spec/user_ulimit.rb -------------------------------------------------------------------------------- /templates/domain.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/templates/domain.erb -------------------------------------------------------------------------------- /templates/su.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/templates/su.erb -------------------------------------------------------------------------------- /templates/ulimit.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/templates/ulimit.erb -------------------------------------------------------------------------------- /test/cookbooks/test/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/test/cookbooks/test/metadata.rb -------------------------------------------------------------------------------- /test/cookbooks/test/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/test/cookbooks/test/recipes/default.rb -------------------------------------------------------------------------------- /test/integration/default/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmhatfield/chef-ulimit/HEAD/test/integration/default/default_spec.rb --------------------------------------------------------------------------------