1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00
freebsd-ports/multimedia/mythtv/pkg-install

87 lines
2.0 KiB
Plaintext
Raw Normal View History

2007-01-18 21:56:31 +00:00
#!/bin/sh
# $FreeBSD$
PATH=/bin:/usr/sbin:/usr/bin:/usr/local/bin
USER=mythtv
GROUP=${USER}
UID=119
GID=${UID}
HOME=/home/mythtv
2007-01-18 21:56:31 +00:00
if pw group show "${GROUP}" 2>/dev/null; then
2007-01-18 21:56:31 +00:00
echo "You already have a group \"${GROUP}\", so I will use it."
else
2007-01-18 21:56:31 +00:00
if pw groupadd ${GROUP} -g ${GID}; then
echo "Added group \"${GROUP}\"."
else
echo "Adding group \"${GROUP}\" failed..."
exit 1
fi
fi
2007-01-18 21:56:31 +00:00
if pw user show "${USER}" 2>/dev/null; then
2007-01-18 21:56:31 +00:00
echo "You already have a user \"${USER}\", so I will use it."
else
2007-01-18 21:56:31 +00:00
if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
-d ${HOME} -m -s /bin/sh -c "MythTV"
2007-01-18 21:56:31 +00:00
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
2007-01-18 21:56:31 +00:00
# Now make the database
if [ -f /usr/local/etc/rc.d/mysql-server ]; then
2007-01-18 21:56:31 +00:00
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
2007-01-18 21:56:31 +00:00
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
2007-01-18 21:56:31 +00:00
EOF
fi
2007-01-18 21:56:31 +00:00
cat <<EOF
To set up mythtv, first assign a password to user mythtv, then log in
as mythtv and run
2007-01-18 21:56:31 +00:00
mythtv-setup
2007-01-18 21:56:31 +00:00
EOF