Hello Peter,
Puppet is getting installed in the
%post section of the ks.cfg file
the whole procedure is running til the end - but after i login into ubuntu, nothing of the packages from the install.pp file is on the system.
what would be the $PATH (target system?) to enter this and if so where int he ks.cfg file?
here is a view on how that ks.cfg looks at the end:
%post
#!/bin/bash
apt-get install -y git openssh-server minicom
apt-get install -y puppet
echo "deb
http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main" | tee /etc/apt/sources.list.d/webupd8team-java.list
echo "deb-src
http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main" | tee -a /etc/apt/sources.list.d/webupd8team-java.list
apt-key adv --keyserver hkp://
keyserver.ubuntu.com:80 --recv-keys EEA14886
apt-get update
sudo puppet-agent --enable
sudo puppet-agent apply /cdrom/puppet/install.pp
%end