blob: 4b91ed45bd9aace5d619af5c95d2b26cde696f44 (
plain) (
blame)
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
|
#!/bin/sh
# $FreeBSD$
PATH=/bin:/usr/sbin:/usr/bin:/usr/local/bin
case $2 in
POST-INSTALL)
USER=mythtv
GROUP=${USER}
UID=119
GID=${UID}
HOME=/home/mythtv
if pw group show "${GROUP}" 2>/dev/null; then
echo "You already have a group \"${GROUP}\", so I will use it."
else
if pw groupadd ${GROUP} -g ${GID}; then
echo "Added group \"${GROUP}\"."
else
echo "Adding group \"${GROUP}\" failed..."
exit 1
fi
fi
if pw user show "${USER}" 2>/dev/null; then
echo "You already have a user \"${USER}\", so I will use it."
else
if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
-d ${HOME} -m -s /bin/sh -c "MythTV"
then
echo "Added user \"${USER}\"."
mkdir -p ${HOME}
if [ $? -ne 0 ]; then
echo '*** Unable to create' ${HOME} '***'
fi
else
echo "Adding user \"${USER}\" failed..."
exit 1
fi
fi
# Now make the database
if [ -f /usr/local/etc/rc.d/mysql-server ]; then
pgrep mysqld > /dev/null
if [ $? -ne 0 ]; then
/usr/local/etc/rc.d/mysql-server start
if [ $? -ne 0 ]; then
echo '*** Unable to start mysqld'
exit 1
else
pgrep mysqld > /dev/null
if [ $? -ne 0 ]; then
echo '*** Unable to start mysqld'
exit 1
fi
fi
fi
# Try to create the database
mysql < /usr/local/share/mythtv/database/mc.sql
if [ $? -ne 0 ]; then
cat <<EOF
*********************************************************************
Database creation failed. Please read the output above and create it
manually. The commands to create the database are in
/usr/local/share/mythtv/database/mc.sql.
*********************************************************************
EOF
else
echo Created database mythconverg.
fi
else
cat <<EOF
No MySQL server found. If you want to run the database on this
machine, please install the latest MySQL server and then create the
database with this command:
mysql < /usr/local/share/mythtv/database/mc.sql
EOF
fi
cat <<EOF
To set up mythtv, first assign a password to user mythtv, then log in
as mythtv and run
mythtv-setup
EOF
;;
esac
|