2017-07-24 13:55:55 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
2017-08-18 08:55:30 -07:00
|
|
|
# Autologin on tty1, let busybox autoconfigure 2-6
|
2018-08-02 20:10:56 +00:00
|
|
|
autologin="$(getent passwd 10000 | cut -d ":" -f 1)"
|
2017-08-18 08:55:30 -07:00
|
|
|
for i in 1 2 3 4 5 6; do
|
|
|
|
old="^tty$i::respawn:/sbin/getty 38400 tty$i"
|
|
|
|
new="# tty$i::respawn:/sbin/getty 38400 tty$i"
|
|
|
|
[ "$i" == "1" ] && new="tty1::respawn:/bin/login -f $autologin"
|
|
|
|
sed -i -e "s.$old.$new.g" /etc/inittab
|
|
|
|
done
|
|
|
|
|
2017-10-07 18:14:49 +02:00
|
|
|
# Create weston-launch group and add user to it
|
|
|
|
[ $(getent group weston-launch) ] || groupadd weston-launch
|
2018-08-02 20:10:56 +00:00
|
|
|
username="$(getent passwd 10000 | cut -d ":" -f 1)"
|
2017-10-12 22:08:10 +02:00
|
|
|
usermod -a -G weston-launch "$username"
|