blob: 2d488a2c7902e67cda597a73084f677128cb64ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
#!/bin/bash
#
# /etc/rc.local: Local multi-user startup script.
#
. /etc/rc.conf
. /etc/rc.d/functions
. /etc/profile
. ${MV_ROOT}/bin/install_functions.sh
function mysql_check {
mysql -e "show databases;" 2>/dev/null >/dev/null
return $?
}
function mythconverg_check {
mysql mythconverg -e "describe settings;" 2>/dev/null >/dev/null
return $?
}
function install_db {
pacman --noconfirm -R mythdb-initial 2>/dev/null > /dev/null
pacman -S --noconfirm mythdb-initial 2>/dev/null > /dev/null
}
#check to see if mysql is running
stat_busy "Checking Mysql"
ATTEMPT=0
mysql_check && printhl " Installing the initial database" &&install_db
mythconverg_check
status=$?
while [ ! $status = 0 ]
do
((ATTEMPT=ATTEMPT+1))
/etc/rc.d/mysqld stop
sleep 2
/etc/rc.d/mysqld start
mysqlstatus=$?
if [ $mysqlstatus = 0 ]
then
mysql_check && install_db
mythconverg_check
status=$?
fi
if [ $ATTEMPT = 20 ]
then
printhl " Could not start mysql or install mythconverg within 20 attempts"
printhl " Aborting install"
exit 20
fi
done
stat_done
#check network parms
stat_busy "Checking network"
init_network
stat_done
stat_busy "Probing network"
request_dhcp &
stat_done
#save some cmdline options
stat_busy "Parsing command line"
parse_cmdline_2_db
bootsplash_setup
stat_done
#search for remote
stat_busy "Checking for remote"
init_remote
stat_done
printhl "Finished"
echo $CMDLINE | grep -qi NoX
if [ $? = 0 ]
then
echo ""
printhl "No auto X option found"
# /usr/bin/chvt 2
else
/root/startx &
fi
# Set up automatically logged in user
if [ -f /.livesys/autologin ]; then
cp /.livesys/autologin /tmp/newuser
fi
|