I've added users to 4 nodes of a microk8s cluster using
useradd user
and typing password and hitting enter to all the asked for info... from what I have read this should copy the contents of the /etc/skel folder to the users homedir? it does not. Not a huge deal, I can fix it, but just wondering why I am reading that it should and it doesn't. thanks Bill
adduser
, but the body of your question says that you useduseradd
- these are different commands. In particular,useradd
does not create the user's home directory unless given the-m
option - so there's nowhere to copy the skeleton files to. – steeldriver Jun 17 '23 at 20:10