blob: a2aa1bdf4a4c29cd6f47412cdfcda381460ef077 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
if [ ! -e /data/srv/httpd/htdocs/mythweb/data/video ]
then
ln -s /myth/video /data/srv/httpd/htdocs/mythweb/data/video
fi
}
post_upgrade(){
post_install $1
}
op=$1
shift
$op $*
|