a problem with a simple scripts in my %pre section of Centos kickstart vmware
Please I'm trying to get a hang of how scripts are put together in the %pre section
I have writing a simple script but it doesn't seem to work. Can someone please tell me what I'm doing wrong?
Thanks in advance
%pre
#!/bin/sh
x=`/sbin/ifconfig`
Cat $x > mnt/source/root/internal.txt
|