├── .chefignore ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Berksfile ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── attributes └── default.rb ├── files └── default │ └── resize2fs_once ├── metadata.rb ├── recipes ├── default.rb └── resize_root.rb ├── spec └── spec_helper.rb └── templates └── default ├── config.txt.erb └── inittab.erb /.chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/.chefignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/.travis.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- 1 | source "https://supermarket.chef.io" 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/Rakefile -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /files/default/resize2fs_once: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/files/default/resize2fs_once -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /recipes/resize_root.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/recipes/resize_root.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /templates/default/config.txt.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/templates/default/config.txt.erb -------------------------------------------------------------------------------- /templates/default/inittab.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Padgett/chef-raspberry-pi/HEAD/templates/default/inittab.erb --------------------------------------------------------------------------------