Re: [CentOS-virt] Suggestions to improve this minimal kickstart config for CentOS 6?

2011-07-19 Thread Kartik Subbarao
On 07/19/2011 12:36 PM, Kartik Subbarao wrote: rpm -e $(rpm -qa |grep -i firmware) This should be changed to: rpm -e $(rpm -qa | grep -i firmware | grep -v kernel-firmware) Since apparently kernel depends on kernel-firmware. -Kartik

Re: [CentOS-virt] Suggestions to improve this minimal kickstart config for CentOS 6?

2011-07-21 Thread Kartik Subbarao
On 07/20/2011 09:59 PM, Manuel Wolfshant wrote: For what is worth, my minimal kickstart is now available as ks-minimalC6 at https://nazar.karan.org/cgit/bluecain/tree/ This is a nice collection of kickstart files!! Is there any way we could get a link to bluecain added on the CentOS Wiki:

Re: [CentOS-virt] Suggestions to improve this minimal kickstart config for CentOS 6?

2011-07-22 Thread Kartik Subbarao
On 07/22/2011 02:16 PM, Manuel Wolfshant wrote: %post rpm -e $(rpm -qa | grep -i \\-firmware | grep -v kernel-firmware) And by the way, the above can rewritten in a shorter form: rpm -e $( rpm -qa \*firmware | grep -v kernel) rpm -qa will enumerate all packages but in fact you