diff options
author | James Meyer <james.meyer@operamail.com> | 2008-11-10 01:25:48 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2008-11-10 01:25:48 (GMT) |
commit | df5646446d84f38b695f00706a57b4c851be462a (patch) | |
tree | b53669571ecfe34ef392efdaa1e2d9818cfd266f /abs/mv-core/mediadirs/mediadir.install | |
parent | 2084879087187738918d377a96ac31ab4915e75e (diff) | |
download | linhes_pkgbuild-df5646446d84f38b695f00706a57b4c851be462a.zip linhes_pkgbuild-df5646446d84f38b695f00706a57b4c851be462a.tar.gz linhes_pkgbuild-df5646446d84f38b695f00706a57b4c851be462a.tar.bz2 |
few more mythvantage pkgs.
Diffstat (limited to 'abs/mv-core/mediadirs/mediadir.install')
-rw-r--r-- | abs/mv-core/mediadirs/mediadir.install | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/abs/mv-core/mediadirs/mediadir.install b/abs/mv-core/mediadirs/mediadir.install new file mode 100644 index 0000000..009b071 --- /dev/null +++ b/abs/mv-core/mediadirs/mediadir.install @@ -0,0 +1,43 @@ +# This is a default template for a post-install scriptlet. You can +# remove any functions you don't need (and this header). + +# arg 1: the new package version +pre_install() { + /bin/true +} + +# arg 1: the new package version +post_install() { + cd / + chown -R mythtv:users /data/media + ln -s /data/media /media + + +} + +# arg 1: the new package version +# arg 2: the old package version +pre_upgrade() { + /bin/true +} + +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + depmod -A + /bin/true +} + +# arg 1: the old package version +pre_remove() { + /bin/true +} + +# arg 1: the old package version +post_remove() { + /bin/true +} + +op=$1 +shift +$op $* |