├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── http ├── ks.cfg ├── ks_cloud_centos.cfg └── ks_cloud_oel.cfg ├── packer-centos-6.json ├── packer-oel-6.json ├── packer-rhel-6.json └── scripts ├── base.sh ├── chef.sh ├── cleanup.sh ├── cloud.sh ├── cloud_oel.sh ├── development.sh ├── epel.sh ├── puppet.sh ├── rhn_reg.sh ├── rhn_unreg.sh ├── vagrant.sh ├── virtualbox.sh └── zerodisk.sh /.gitignore: -------------------------------------------------------------------------------- 1 | prepare 2 | /packer_cache/* 3 | /img* 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/README.md -------------------------------------------------------------------------------- /http/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/http/ks.cfg -------------------------------------------------------------------------------- /http/ks_cloud_centos.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/http/ks_cloud_centos.cfg -------------------------------------------------------------------------------- /http/ks_cloud_oel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/http/ks_cloud_oel.cfg -------------------------------------------------------------------------------- /packer-centos-6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/packer-centos-6.json -------------------------------------------------------------------------------- /packer-oel-6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/packer-oel-6.json -------------------------------------------------------------------------------- /packer-rhel-6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/packer-rhel-6.json -------------------------------------------------------------------------------- /scripts/base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/scripts/base.sh -------------------------------------------------------------------------------- /scripts/chef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/scripts/chef.sh -------------------------------------------------------------------------------- /scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/scripts/cleanup.sh -------------------------------------------------------------------------------- /scripts/cloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/scripts/cloud.sh -------------------------------------------------------------------------------- /scripts/cloud_oel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/scripts/cloud_oel.sh -------------------------------------------------------------------------------- /scripts/development.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/scripts/development.sh -------------------------------------------------------------------------------- /scripts/epel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/scripts/epel.sh -------------------------------------------------------------------------------- /scripts/puppet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/scripts/puppet.sh -------------------------------------------------------------------------------- /scripts/rhn_reg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/scripts/rhn_reg.sh -------------------------------------------------------------------------------- /scripts/rhn_unreg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/scripts/rhn_unreg.sh -------------------------------------------------------------------------------- /scripts/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/scripts/vagrant.sh -------------------------------------------------------------------------------- /scripts/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/scripts/virtualbox.sh -------------------------------------------------------------------------------- /scripts/zerodisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TelekomLabs/packer-rhel/HEAD/scripts/zerodisk.sh --------------------------------------------------------------------------------