blob: 53fe53a76c1f74f17d7d981529958b1561e9000a (
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
|
# arg 1: the new package version
post_install() {
if [ ! -e $MYTHHOME/.mediaserv ]
then
ln -s /myth/mediaserv $MYTHHOME/.mediaserv
fi
if [ ! -e /myth/mediaserv/media/tv ]
then
ln -s /myth/pretty /myth/mediaserv/media/tv
fi
if [ ! -e /myth/mediaserv/media/video ]
then
ln -s /myth/video /myth/mediaserv/media/video
fi
chown -R mythtv.mythtv /myth/mediaserv
add_service.sh mediaserv
sv start mediaserv
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
post_install $1
}
# arg 1: the old package version
post_remove() {
sv stop mediaserv
remove_service.sh mediaserv
rm -fr $MYTHHOME/.mediaserv
rm -fr /myth/mediaserv
}
op=$1
shift
$op $*
|