You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
454 B
19 lines
454 B
#!/bin/sh
|
|
|
|
if [ ! -x /usr/bin/X ]; then
|
|
echo "SKIP autostart: X not installed" >&2
|
|
exit 0
|
|
fi
|
|
|
|
## setup automated graphical session startup
|
|
INITTAB=/etc/inittab
|
|
if [ -f "$INITTAB" ]; then
|
|
[ -z "$runlevel" ] && runlevel=5
|
|
sed -i "s,^\(id:\)\(.*\)\(:initdefault.*\),\\1$runlevel\\3," "$INITTAB"
|
|
fi
|
|
|
|
## ...and systemd, if any
|
|
## NB: alterator-setup's backup file can present a nice catch if left around
|
|
rm -f /etc/systemd/system/default.target{,.bak}
|
|
|
|
:
|
|
|