diff options
author | Greg Frost <gregfrost1@bigpond.com> | 2009-08-09 01:00:57 (GMT) |
---|---|---|
committer | Greg Frost <gregfrost1@bigpond.com> | 2009-08-09 01:00:57 (GMT) |
commit | a975be5c625c282814c3095ee4d4f23442fb5618 (patch) | |
tree | 6659fd05ba702ab89790e9566a2b1f6fa5712696 /abs/extra-testing/myth2ipod/myth2ipod.install | |
parent | 2496b37b4945453be84122f6823c0c2b7ff79db6 (diff) | |
parent | 04641b54e2aaab6f0cff7145af0be518bfee49cd (diff) | |
download | linhes_pkgbuild-a975be5c625c282814c3095ee4d4f23442fb5618.zip linhes_pkgbuild-a975be5c625c282814c3095ee4d4f23442fb5618.tar.gz linhes_pkgbuild-a975be5c625c282814c3095ee4d4f23442fb5618.tar.bz2 |
Merge branch 'master' of ssh://gregfrost@knoppmyth.net/mount/repository/LinHES-PKGBUILD
Diffstat (limited to 'abs/extra-testing/myth2ipod/myth2ipod.install')
-rwxr-xr-x | abs/extra-testing/myth2ipod/myth2ipod.install | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/abs/extra-testing/myth2ipod/myth2ipod.install b/abs/extra-testing/myth2ipod/myth2ipod.install index 4a7e046..9b9239a 100755 --- a/abs/extra-testing/myth2ipod/myth2ipod.install +++ b/abs/extra-testing/myth2ipod/myth2ipod.install @@ -1,6 +1,7 @@ pre_install() { - echo "" + mkdir -p /myth/ipodfeed + chown mythtv:http /myth/ipodfeed } pre_upgrade() { @@ -13,14 +14,11 @@ pre_remove() { post_install() { . /etc/systemconfig - mkdir /myth/ipodfeed - chown mythtv:users /myth/ipodfeed ln -s /myth/ipodfeed /data/srv/httpd/htdocs/ipodfeed + ln -s /myth/ipodfeed/m2iweb.php /myth/ipodfeed/index.php cp /usr/bin/myth2ipod /tmp sed -e "s/REPLACEME/$hostname/g" /tmp/myth2ipod > /usr/bin/myth2ipod chown -R mythtv:http /myth/ipodfeed - - } post_upgrade() { @@ -28,7 +26,10 @@ post_upgrade() { } post_remove() { - rm -fr /data/srv/httpd/htdocs/ipodfeed + rm -fr /data/srv/httpd/htdocs/ipodfeed + rm -rf /myth/ipodfeed/m2iweb.php + rm -rf /myth/ipodfeed/index.php + # don't delete content that the user may still want, so leave /myth/ipodfeed } op=$1 |