I am wondering if there is anything like taking existing RPM packages and putting them into one main RPM for offline deploy/installs.
What I am trying to do is install MySQL Server on CentOS 6.5. I would like to distribute this to our servers which do not have access to repos outside of company network. These packages will be uploaded to our internal repo either seperately or in one package (hopefully).
So instead of running yum install mysql-community*.rpm
I am hoping that I can somehow package the below RPMs into one and on target servers just run yum install some_standard_package.rpm
.
mysql-community-client-5.7.17-1.el6.x86_64.rpm
mysql-community-common-5.7.17-1.el6.x86_64.rpm
mysql-community-libs-5.7.17-1.el6.x86_64.rpm
mysql-community-libs-compat-5.7.17-1.el6.x86_64.rpm
mysql-community-server-5.7.17-1.el6.x86_64.rpm
I have searched for a solution but all I find are pages instructing me how to rebuild an RPM package form source which is not what I am looking for.