├── .gitignore ├── README.md ├── Vagrantfile ├── http ├── OEL6_6-x86_64 │ ├── ks.cfg │ └── ks_cloud.cfg ├── OEL6_7-x86_64 │ ├── ks.cfg │ └── ks_cloud.cfg ├── OEL6_9-x86_64 │ ├── ks.cfg │ └── ks_cloud.cfg └── OEL7_2-x86_64 │ ├── ks.cfg │ └── ks_cloud.cfg ├── oracle-linux-6.6-x86_64.json ├── oracle-linux-6.7-x86_64.json ├── oracle-linux-6.9-x86_64.json ├── oracle-linux-7.2-x86_64.json ├── scripts ├── compact.sh ├── ol7_xenmodules.sh ├── rhel_6_x_network.sh ├── rhel_6_x_vmtools.sh ├── rhel_7_x_network.sh ├── rhel_7_x_vmtools.sh ├── vagrant.sh └── vboxguest.sh └── upload └── opc-init.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/Vagrantfile -------------------------------------------------------------------------------- /http/OEL6_6-x86_64/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/http/OEL6_6-x86_64/ks.cfg -------------------------------------------------------------------------------- /http/OEL6_6-x86_64/ks_cloud.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/http/OEL6_6-x86_64/ks_cloud.cfg -------------------------------------------------------------------------------- /http/OEL6_7-x86_64/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/http/OEL6_7-x86_64/ks.cfg -------------------------------------------------------------------------------- /http/OEL6_7-x86_64/ks_cloud.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/http/OEL6_7-x86_64/ks_cloud.cfg -------------------------------------------------------------------------------- /http/OEL6_9-x86_64/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/http/OEL6_9-x86_64/ks.cfg -------------------------------------------------------------------------------- /http/OEL6_9-x86_64/ks_cloud.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/http/OEL6_9-x86_64/ks_cloud.cfg -------------------------------------------------------------------------------- /http/OEL7_2-x86_64/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/http/OEL7_2-x86_64/ks.cfg -------------------------------------------------------------------------------- /http/OEL7_2-x86_64/ks_cloud.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/http/OEL7_2-x86_64/ks_cloud.cfg -------------------------------------------------------------------------------- /oracle-linux-6.6-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/oracle-linux-6.6-x86_64.json -------------------------------------------------------------------------------- /oracle-linux-6.7-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/oracle-linux-6.7-x86_64.json -------------------------------------------------------------------------------- /oracle-linux-6.9-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/oracle-linux-6.9-x86_64.json -------------------------------------------------------------------------------- /oracle-linux-7.2-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/oracle-linux-7.2-x86_64.json -------------------------------------------------------------------------------- /scripts/compact.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/scripts/compact.sh -------------------------------------------------------------------------------- /scripts/ol7_xenmodules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/scripts/ol7_xenmodules.sh -------------------------------------------------------------------------------- /scripts/rhel_6_x_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/scripts/rhel_6_x_network.sh -------------------------------------------------------------------------------- /scripts/rhel_6_x_vmtools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/scripts/rhel_6_x_vmtools.sh -------------------------------------------------------------------------------- /scripts/rhel_7_x_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/scripts/rhel_7_x_network.sh -------------------------------------------------------------------------------- /scripts/rhel_7_x_vmtools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/scripts/rhel_7_x_vmtools.sh -------------------------------------------------------------------------------- /scripts/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/scripts/vagrant.sh -------------------------------------------------------------------------------- /scripts/vboxguest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/scripts/vboxguest.sh -------------------------------------------------------------------------------- /upload/opc-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biemond/packer-oracle/HEAD/upload/opc-init.sh --------------------------------------------------------------------------------