├── .gitignore ├── LICENSE ├── README.md ├── debian-jessie ├── debian-stretch ├── debian-wheezy ├── http ├── preseed_jessie.cfg ├── preseed_stretch.cfg └── preseed_wheezy.cfg └── scripts ├── ansible.sh ├── chef.sh ├── cleanup.sh ├── networking.sh ├── puppet.sh ├── sshd.sh ├── sudoers.sh ├── update.sh ├── vagrant.sh └── vbaddguest.sh /.gitignore: -------------------------------------------------------------------------------- 1 | packer_cache/ 2 | *.box 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/README.md -------------------------------------------------------------------------------- /debian-jessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/debian-jessie -------------------------------------------------------------------------------- /debian-stretch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/debian-stretch -------------------------------------------------------------------------------- /debian-wheezy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/debian-wheezy -------------------------------------------------------------------------------- /http/preseed_jessie.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/http/preseed_jessie.cfg -------------------------------------------------------------------------------- /http/preseed_stretch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/http/preseed_stretch.cfg -------------------------------------------------------------------------------- /http/preseed_wheezy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/http/preseed_wheezy.cfg -------------------------------------------------------------------------------- /scripts/ansible.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/scripts/ansible.sh -------------------------------------------------------------------------------- /scripts/chef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/scripts/chef.sh -------------------------------------------------------------------------------- /scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/scripts/cleanup.sh -------------------------------------------------------------------------------- /scripts/networking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/scripts/networking.sh -------------------------------------------------------------------------------- /scripts/puppet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/scripts/puppet.sh -------------------------------------------------------------------------------- /scripts/sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/scripts/sshd.sh -------------------------------------------------------------------------------- /scripts/sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/scripts/sudoers.sh -------------------------------------------------------------------------------- /scripts/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/scripts/update.sh -------------------------------------------------------------------------------- /scripts/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/scripts/vagrant.sh -------------------------------------------------------------------------------- /scripts/vbaddguest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deimosfr/packer-debian/HEAD/scripts/vbaddguest.sh --------------------------------------------------------------------------------