diff options
author | Eric Hameleers <alien@slackware.com> | 2018-03-12 13:30:55 +0100 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2018-03-12 13:30:55 +0100 |
commit | 5599d9484b0c2cde44ce199274c177dbc17106ac (patch) | |
tree | 505e0417455498d73db8bdca0525361d5765c76f | |
parent | 56c44066b77b2fdc53e7a0e0aa14a4ad1cc7e464 (diff) | |
download | liveslak-5599d9484b0c2cde44ce199274c177dbc17106ac.tar.gz liveslak-5599d9484b0c2cde44ce199274c177dbc17106ac.tar.xz |
Add user 'live' to group 'input'
Group membership of 'input' is needed to access input devices that are
exposed through libinput (touch devices are only exposed through libinput)
and seems to be a requirement for Wayland.
Diffstat (limited to '')
-rwxr-xr-x | make_slackware_live.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make_slackware_live.sh b/make_slackware_live.sh index 529328f..861337f 100755 --- a/make_slackware_live.sh +++ b/make_slackware_live.sh @@ -1309,7 +1309,7 @@ EOL echo "root:${ROOTPW}" | chroot ${LIVE_ROOTDIR} /usr/sbin/chpasswd # Create a nonprivileged user account (called "live" by default): -chroot ${LIVE_ROOTDIR} /usr/sbin/useradd -c "Slackware Live User" -g users -G wheel,audio,cdrom,floppy,plugdev,video,power,netdev,lp,scanner,kmem,dialout,games,disk -u 1000 -d /home/${LIVEUID} -m -s /bin/bash ${LIVEUID} +chroot ${LIVE_ROOTDIR} /usr/sbin/useradd -c "Slackware Live User" -g users -G wheel,audio,cdrom,floppy,plugdev,video,power,netdev,lp,scanner,kmem,dialout,games,disk,input -u 1000 -d /home/${LIVEUID} -m -s /bin/bash ${LIVEUID} echo "${LIVEUID}:${LIVEPW}" | chroot ${LIVE_ROOTDIR} /usr/sbin/chpasswd # Configure suauth: |