├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── Vagrantfile └── manifests ├── Puppetfile └── default.pp /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshendra/vagrant-ubuntu-tomcat7/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshendra/vagrant-ubuntu-tomcat7/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshendra/vagrant-ubuntu-tomcat7/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshendra/vagrant-ubuntu-tomcat7/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshendra/vagrant-ubuntu-tomcat7/HEAD/Vagrantfile -------------------------------------------------------------------------------- /manifests/Puppetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshendra/vagrant-ubuntu-tomcat7/HEAD/manifests/Puppetfile -------------------------------------------------------------------------------- /manifests/default.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seshendra/vagrant-ubuntu-tomcat7/HEAD/manifests/default.pp --------------------------------------------------------------------------------