I have a PXE server for network installations (configured similar to, e.g. https://www.linuxtechi.com/configure-pxe-installation-server-centos-7/) and am using a Kickstart script to automatically implement many settings. The CentOS image is stored on the PXE server and accessed via FTP (location on server: /var/ftp/pub
)
Is it possible for the kickstart script to copy across files from the PXE server so they are available on the client's hard-drive when the install is finished?
i.e. I have a folder called foo
on the server: /var/ftp/pub/foo
. How can I copy across this so that the freshly installed client has these files at e.g. /home/foo
please?
I've seen numerous questions asking this already for DVD / USB installs, but my question concerns network installations so I don't think the scripts used for DVD installs will work.
Thanks