When a new user is created the script is supposed to, but does not.
chown the user directory with their permissions
- Grab the
/etc/skel files that enable the desktop
Need to find a solution.
Issue lies somewhere on line 638 in the installer.sh script.
# Set user passwd
print "Set user password"
arch-chroot /mnt useradd -m ${user} -G wheel -k /etc/skel
arch-chroot /mnt /bin/passwd "$user"
arch-chroot /mnt /bin/chown -R ${user}:${user} /home/${user}
arch-chroot /mnt /bin/rsync -av /etc/skel/ /home/${user}
The rsync command is an attempt to sync through contents of skel and the user directory but that does not work.
When a new user is created the script is supposed to, but does not.
chownthe user directory with their permissions/etc/skelfiles that enable the desktopNeed to find a solution.
Issue lies somewhere on line 638 in the
installer.shscript.The rsync command is an attempt to sync through contents of skel and the user directory but that does not work.