Can anyone suggest a way to action some user setup stuff during a kickstart?
The kickstart seems to stop at the su command.
.
.
/usr/sbin/adduser -p '$1$PYL05YxN$JwONw15qAMQrI5f1z45Sr/' smith
Would like to then:-
# su - smith
# mkdir --mode=700 .ssh
cat >> .ssh/authorized_keys << "PUBLIC_KEY"
ssh-rsa AAAAB3NzaC1yc2....
PUBLIC_KEY
Also looking for way to debug/log a snippet
I already have a:
% post --log-/root/mykickstart.log
It doesn't seeme able to capture of the snippet
Kind regards
Mark