I am trying fully automate my os installation. I need certain packages to be installed during this automation. I am specifying all the required packages names in the kickstart file, for ex:
%%packages
php
php-mysql
httpd
similarly, I am trying to install virtualbox through kickstart installation.
I manually downloaded the virtualbox rpm VirtualBox-5.0-5.0.0_101573_el7-1.x86_64.rpm
, and placed it inside the Package folder of centos7 and recreated repo.
Now my packages list in kickstart file is :
%%packages
VirtualBox
But this throws an error during installation
you have specified that the package VirtualBox should be installed, this package doesn't exist
I have no clue, what's wrong here? Thank you for any help