├── .gitignore ├── Gemfile ├── Gemfile.lock ├── Puppetfile ├── Puppetfile.lock ├── README.md ├── Vagrantfile └── manifests └── base.pp /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | modules/*/* 3 | .librarian 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garethr/pentesting-playground/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garethr/pentesting-playground/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Puppetfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garethr/pentesting-playground/HEAD/Puppetfile -------------------------------------------------------------------------------- /Puppetfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garethr/pentesting-playground/HEAD/Puppetfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garethr/pentesting-playground/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garethr/pentesting-playground/HEAD/Vagrantfile -------------------------------------------------------------------------------- /manifests/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garethr/pentesting-playground/HEAD/manifests/base.pp --------------------------------------------------------------------------------