mirror of
https://abf.rosa.ru/djam/calamares.git
synced 2025-02-24 08:02:50 +00:00
33 lines
684 B
Bash
33 lines
684 B
Bash
#!/bin/sh
|
|
# tpgxyz@gmail.com
|
|
|
|
if grep -q '\binstall\b' /proc/cmdline; then
|
|
. /etc/locale.conf
|
|
|
|
# ensure plymouth really has stopped
|
|
if pgrep "plymouthd" > /dev/null 2>&1; then
|
|
/bin/plymouth quit
|
|
fi
|
|
|
|
/bin/systemctl stop crond.service &
|
|
|
|
xset -dpms
|
|
xset s off
|
|
|
|
if [ -e /usr/bin/startx ] && [ -x /usr/bin/calamares ]; then
|
|
/usr/bin/startx /usr/bin/calamares $* -- -dpi 96 vt1 -background none
|
|
else
|
|
echo "calamares-install: critical programs are missing, check your system!"
|
|
fi
|
|
|
|
# check if we are booted from cd drom to eject it
|
|
blkid /dev/sr0 >/dev/null 2>&1
|
|
if [[ $? -eq 0 ]]; then
|
|
eject
|
|
sleep 10
|
|
fi
|
|
|
|
sync
|
|
reboot
|
|
|
|
fi
|