├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── Vagrantfile ├── archlinux-x86_64.json ├── centos-6.9-x86_64.json ├── centos-7.4-x86_64.json ├── debian-7.11-amd64.json ├── debian-8.10-amd64.json ├── debian-9.4-amd64.json ├── fedora-26-x86_64.json ├── fedora-27-x86_64.json ├── fedora-28-x86_64.json ├── freebsd-10.4-amd64.json ├── freebsd-11.1-amd64.json ├── freebsd-9.3-amd64.json ├── http ├── archlinux │ ├── install-chroot.sh │ └── install.sh ├── centos-6.9 │ └── anaconda-ks.cfg ├── centos-7.4 │ └── anaconda-ks.cfg ├── debian-7.11 │ └── preseed.cfg ├── debian-8.10 │ └── preseed.cfg ├── debian-9.4 │ └── preseed.cfg ├── fedora-26 │ └── anaconda-ks.cfg ├── fedora-27 │ └── anaconda-ks.cfg ├── fedora-28 │ └── anaconda-ks.cfg ├── freebsd-10.4 │ └── installerconfig ├── freebsd-11.1 │ └── installerconfig ├── freebsd-9.3 │ └── installerconfig ├── openbsd-6.1 │ ├── install-chroot.sh │ ├── install.conf │ └── install.sh ├── openbsd-6.2 │ ├── install-chroot.sh │ ├── install.conf │ └── install.sh ├── openbsd-6.3 │ ├── install-chroot.sh │ ├── install.conf │ └── install.sh ├── ubuntu-14.04 │ └── preseed.cfg ├── ubuntu-16.04 │ └── preseed.cfg ├── ubuntu-17.10 │ └── preseed.cfg └── ubuntu │ └── preseed.cfg ├── openbsd-6.1-amd64.json ├── openbsd-6.2-amd64.json ├── openbsd-6.3-amd64.json ├── scripts ├── archlinux │ ├── cleanup.sh │ ├── virtualbox.sh │ └── vmware.sh ├── centos-6.9 │ ├── cleanup.sh │ ├── init.sh │ └── repo.sh ├── centos-7.4 │ ├── cleanup.sh │ └── repo.sh ├── centos │ ├── locale.sh │ ├── virtualbox.sh │ └── vmware.sh ├── common │ ├── minimize.sh │ ├── sshd.sh │ └── vagrant.sh ├── debian-9.4 │ └── vmware.sh ├── debian │ ├── cleanup.sh │ ├── init.sh │ ├── virtualbox.sh │ └── vmware.sh ├── fedora │ ├── cleanup.sh │ ├── locale.sh │ ├── virtualbox.sh │ └── vmware.sh ├── freebsd │ ├── cleanup.sh │ ├── init.sh │ ├── minimize.sh │ ├── virtualbox.sh │ └── vmware.sh ├── openbsd │ ├── init.sh │ └── minimize.sh ├── ubuntu-14.04 │ └── vmware.sh ├── ubuntu │ ├── apt.sh │ ├── cleanup.sh │ ├── init.sh │ ├── virtualbox.sh │ └── vmware.sh └── vyos │ ├── cleanup.sh │ ├── init.sh │ ├── minimize.sh │ ├── repo.sh │ ├── vagrant.sh │ ├── virtualbox.sh │ └── vmware.sh ├── spec ├── epel_spec.rb ├── network_spec.rb ├── selinux_spec.rb ├── spec_helper.rb ├── sshd_spec.rb ├── time_spec.rb ├── vagrant_spec.rb ├── virtualbox_spec.rb └── vmware_spec.rb ├── ubuntu-14.04-amd64.json ├── ubuntu-16.04-amd64.json ├── ubuntu-17.10-amd64.json ├── vagrantfile_templates ├── freebsd.rb └── openbsd.rb ├── vars ├── development.json └── release.json └── vyos-1.1.7-amd64.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.box 2 | .bundle/ 3 | .vagrant/ 4 | output-*/ 5 | packer_cache/ 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/Vagrantfile -------------------------------------------------------------------------------- /archlinux-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/archlinux-x86_64.json -------------------------------------------------------------------------------- /centos-6.9-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/centos-6.9-x86_64.json -------------------------------------------------------------------------------- /centos-7.4-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/centos-7.4-x86_64.json -------------------------------------------------------------------------------- /debian-7.11-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/debian-7.11-amd64.json -------------------------------------------------------------------------------- /debian-8.10-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/debian-8.10-amd64.json -------------------------------------------------------------------------------- /debian-9.4-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/debian-9.4-amd64.json -------------------------------------------------------------------------------- /fedora-26-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/fedora-26-x86_64.json -------------------------------------------------------------------------------- /fedora-27-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/fedora-27-x86_64.json -------------------------------------------------------------------------------- /fedora-28-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/fedora-28-x86_64.json -------------------------------------------------------------------------------- /freebsd-10.4-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/freebsd-10.4-amd64.json -------------------------------------------------------------------------------- /freebsd-11.1-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/freebsd-11.1-amd64.json -------------------------------------------------------------------------------- /freebsd-9.3-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/freebsd-9.3-amd64.json -------------------------------------------------------------------------------- /http/archlinux/install-chroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/archlinux/install-chroot.sh -------------------------------------------------------------------------------- /http/archlinux/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/archlinux/install.sh -------------------------------------------------------------------------------- /http/centos-6.9/anaconda-ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/centos-6.9/anaconda-ks.cfg -------------------------------------------------------------------------------- /http/centos-7.4/anaconda-ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/centos-7.4/anaconda-ks.cfg -------------------------------------------------------------------------------- /http/debian-7.11/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/debian-7.11/preseed.cfg -------------------------------------------------------------------------------- /http/debian-8.10/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/debian-8.10/preseed.cfg -------------------------------------------------------------------------------- /http/debian-9.4/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/debian-9.4/preseed.cfg -------------------------------------------------------------------------------- /http/fedora-26/anaconda-ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/fedora-26/anaconda-ks.cfg -------------------------------------------------------------------------------- /http/fedora-27/anaconda-ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/fedora-27/anaconda-ks.cfg -------------------------------------------------------------------------------- /http/fedora-28/anaconda-ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/fedora-28/anaconda-ks.cfg -------------------------------------------------------------------------------- /http/freebsd-10.4/installerconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/freebsd-10.4/installerconfig -------------------------------------------------------------------------------- /http/freebsd-11.1/installerconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/freebsd-11.1/installerconfig -------------------------------------------------------------------------------- /http/freebsd-9.3/installerconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/freebsd-9.3/installerconfig -------------------------------------------------------------------------------- /http/openbsd-6.1/install-chroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/openbsd-6.1/install-chroot.sh -------------------------------------------------------------------------------- /http/openbsd-6.1/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/openbsd-6.1/install.conf -------------------------------------------------------------------------------- /http/openbsd-6.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/openbsd-6.1/install.sh -------------------------------------------------------------------------------- /http/openbsd-6.2/install-chroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/openbsd-6.2/install-chroot.sh -------------------------------------------------------------------------------- /http/openbsd-6.2/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/openbsd-6.2/install.conf -------------------------------------------------------------------------------- /http/openbsd-6.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/openbsd-6.2/install.sh -------------------------------------------------------------------------------- /http/openbsd-6.3/install-chroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/openbsd-6.3/install-chroot.sh -------------------------------------------------------------------------------- /http/openbsd-6.3/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/openbsd-6.3/install.conf -------------------------------------------------------------------------------- /http/openbsd-6.3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/openbsd-6.3/install.sh -------------------------------------------------------------------------------- /http/ubuntu-14.04/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/ubuntu-14.04/preseed.cfg -------------------------------------------------------------------------------- /http/ubuntu-16.04/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/ubuntu-16.04/preseed.cfg -------------------------------------------------------------------------------- /http/ubuntu-17.10/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/ubuntu-17.10/preseed.cfg -------------------------------------------------------------------------------- /http/ubuntu/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/http/ubuntu/preseed.cfg -------------------------------------------------------------------------------- /openbsd-6.1-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/openbsd-6.1-amd64.json -------------------------------------------------------------------------------- /openbsd-6.2-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/openbsd-6.2-amd64.json -------------------------------------------------------------------------------- /openbsd-6.3-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/openbsd-6.3-amd64.json -------------------------------------------------------------------------------- /scripts/archlinux/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/archlinux/cleanup.sh -------------------------------------------------------------------------------- /scripts/archlinux/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/archlinux/virtualbox.sh -------------------------------------------------------------------------------- /scripts/archlinux/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/archlinux/vmware.sh -------------------------------------------------------------------------------- /scripts/centos-6.9/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/centos-6.9/cleanup.sh -------------------------------------------------------------------------------- /scripts/centos-6.9/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/centos-6.9/init.sh -------------------------------------------------------------------------------- /scripts/centos-6.9/repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/centos-6.9/repo.sh -------------------------------------------------------------------------------- /scripts/centos-7.4/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/centos-7.4/cleanup.sh -------------------------------------------------------------------------------- /scripts/centos-7.4/repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/centos-7.4/repo.sh -------------------------------------------------------------------------------- /scripts/centos/locale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/centos/locale.sh -------------------------------------------------------------------------------- /scripts/centos/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/centos/virtualbox.sh -------------------------------------------------------------------------------- /scripts/centos/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/centos/vmware.sh -------------------------------------------------------------------------------- /scripts/common/minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/common/minimize.sh -------------------------------------------------------------------------------- /scripts/common/sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/common/sshd.sh -------------------------------------------------------------------------------- /scripts/common/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/common/vagrant.sh -------------------------------------------------------------------------------- /scripts/debian-9.4/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/debian-9.4/vmware.sh -------------------------------------------------------------------------------- /scripts/debian/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/debian/cleanup.sh -------------------------------------------------------------------------------- /scripts/debian/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/debian/init.sh -------------------------------------------------------------------------------- /scripts/debian/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/debian/virtualbox.sh -------------------------------------------------------------------------------- /scripts/debian/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/debian/vmware.sh -------------------------------------------------------------------------------- /scripts/fedora/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/fedora/cleanup.sh -------------------------------------------------------------------------------- /scripts/fedora/locale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/fedora/locale.sh -------------------------------------------------------------------------------- /scripts/fedora/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/fedora/virtualbox.sh -------------------------------------------------------------------------------- /scripts/fedora/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/fedora/vmware.sh -------------------------------------------------------------------------------- /scripts/freebsd/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/freebsd/cleanup.sh -------------------------------------------------------------------------------- /scripts/freebsd/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/freebsd/init.sh -------------------------------------------------------------------------------- /scripts/freebsd/minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/freebsd/minimize.sh -------------------------------------------------------------------------------- /scripts/freebsd/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/freebsd/virtualbox.sh -------------------------------------------------------------------------------- /scripts/freebsd/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/freebsd/vmware.sh -------------------------------------------------------------------------------- /scripts/openbsd/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/openbsd/init.sh -------------------------------------------------------------------------------- /scripts/openbsd/minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/openbsd/minimize.sh -------------------------------------------------------------------------------- /scripts/ubuntu-14.04/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/ubuntu-14.04/vmware.sh -------------------------------------------------------------------------------- /scripts/ubuntu/apt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/ubuntu/apt.sh -------------------------------------------------------------------------------- /scripts/ubuntu/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/ubuntu/cleanup.sh -------------------------------------------------------------------------------- /scripts/ubuntu/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/ubuntu/init.sh -------------------------------------------------------------------------------- /scripts/ubuntu/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/ubuntu/virtualbox.sh -------------------------------------------------------------------------------- /scripts/ubuntu/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/ubuntu/vmware.sh -------------------------------------------------------------------------------- /scripts/vyos/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/vyos/cleanup.sh -------------------------------------------------------------------------------- /scripts/vyos/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/vyos/init.sh -------------------------------------------------------------------------------- /scripts/vyos/minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/vyos/minimize.sh -------------------------------------------------------------------------------- /scripts/vyos/repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/vyos/repo.sh -------------------------------------------------------------------------------- /scripts/vyos/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/vyos/vagrant.sh -------------------------------------------------------------------------------- /scripts/vyos/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/vyos/virtualbox.sh -------------------------------------------------------------------------------- /scripts/vyos/vmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/scripts/vyos/vmware.sh -------------------------------------------------------------------------------- /spec/epel_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/spec/epel_spec.rb -------------------------------------------------------------------------------- /spec/network_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/spec/network_spec.rb -------------------------------------------------------------------------------- /spec/selinux_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/spec/selinux_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/sshd_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/spec/sshd_spec.rb -------------------------------------------------------------------------------- /spec/time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/spec/time_spec.rb -------------------------------------------------------------------------------- /spec/vagrant_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/spec/vagrant_spec.rb -------------------------------------------------------------------------------- /spec/virtualbox_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/spec/virtualbox_spec.rb -------------------------------------------------------------------------------- /spec/vmware_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/spec/vmware_spec.rb -------------------------------------------------------------------------------- /ubuntu-14.04-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/ubuntu-14.04-amd64.json -------------------------------------------------------------------------------- /ubuntu-16.04-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/ubuntu-16.04-amd64.json -------------------------------------------------------------------------------- /ubuntu-17.10-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/ubuntu-17.10-amd64.json -------------------------------------------------------------------------------- /vagrantfile_templates/freebsd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/vagrantfile_templates/freebsd.rb -------------------------------------------------------------------------------- /vagrantfile_templates/openbsd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/vagrantfile_templates/openbsd.rb -------------------------------------------------------------------------------- /vars/development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/vars/development.json -------------------------------------------------------------------------------- /vars/release.json: -------------------------------------------------------------------------------- 1 | { 2 | "compression_level": "9" 3 | } 4 | -------------------------------------------------------------------------------- /vyos-1.1.7-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaorimatz/packer-templates/HEAD/vyos-1.1.7-amd64.json --------------------------------------------------------------------------------