summaryrefslogtreecommitdiffstats
path: root/abs/extra/mythvodka/hulu_grabber.sh
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-01-31 20:57:48 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-01-31 20:57:48 (GMT)
commit1d0b04a8f4c435eae65307d26195cf8e380aba90 (patch)
tree127c4772390eac9e487c44a9197080d74342e32a /abs/extra/mythvodka/hulu_grabber.sh
parentf1a341f44d57589e1d8352f7c4ecc63f6dd15eda (diff)
downloadlinhes_pkgbuild-1d0b04a8f4c435eae65307d26195cf8e380aba90.zip
linhes_pkgbuild-1d0b04a8f4c435eae65307d26195cf8e380aba90.tar.gz
linhes_pkgbuild-1d0b04a8f4c435eae65307d26195cf8e380aba90.tar.bz2
mythvodka: dropped from repo.
Diffstat (limited to 'abs/extra/mythvodka/hulu_grabber.sh')
-rwxr-xr-xabs/extra/mythvodka/hulu_grabber.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/abs/extra/mythvodka/hulu_grabber.sh b/abs/extra/mythvodka/hulu_grabber.sh
deleted file mode 100755
index 4840dc0..0000000
--- a/abs/extra/mythvodka/hulu_grabber.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#! /bin/bash
-log=/var/log/mythtv/hulu_grabber.log
-out=/var/tmp/huludata.xml
-rm -f $log
-echo "Start on `date`" >>$log 2>&1
-/usr/local/bin/gethulu.pl $out.new >>$log 2>&1
-stat=$?
-if [ $stat -ne 0 ]; then
- echo "Bad status $stat from gethulu.pl" >>$log 2>&1
- exit 1
-fi
-rm -f $out.old
-mv $out $out.old
-mv $out.new $out
-echo "Done on `date`" >>$log 2>&1
-ls -lh $out >>$log 2>&1