diff options
author | Michael Hanson <hansonorders@verison.net> | 2010-06-07 22:05:36 (GMT) |
---|---|---|
committer | Michael Hanson <hansonorders@verison.net> | 2010-06-07 22:05:36 (GMT) |
commit | 8690fb6d1fe3e2ee832a2b21a8085290ef3721e0 (patch) | |
tree | 5034e3008ae53279bef4e866c91bf6608e5a7b40 /abs/extra-testing/community/mre/mre.install | |
parent | 417830a7d45fff2b298930b2fcaa1326222d50f6 (diff) | |
parent | 35023198b8846a8e9831da94d3bb64e77e316147 (diff) | |
download | linhes_pkgbuild-8690fb6d1fe3e2ee832a2b21a8085290ef3721e0.zip linhes_pkgbuild-8690fb6d1fe3e2ee832a2b21a8085290ef3721e0.tar.gz linhes_pkgbuild-8690fb6d1fe3e2ee832a2b21a8085290ef3721e0.tar.bz2 |
Merge branch 'master' of mihanson@knoppmyth.net:LinHES-PKGBUILD
Diffstat (limited to 'abs/extra-testing/community/mre/mre.install')
-rwxr-xr-x | abs/extra-testing/community/mre/mre.install | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/abs/extra-testing/community/mre/mre.install b/abs/extra-testing/community/mre/mre.install new file mode 100755 index 0000000..4e3fb0d --- /dev/null +++ b/abs/extra-testing/community/mre/mre.install @@ -0,0 +1,20 @@ +# arg 1: the new package version +post_install() { + add_service.sh mre + sed -i.pacsave '/^open_basedir/s|$|:/var/log/mre:/usr/local/lib/mre|' /etc/php/php.ini +} + +post_upgrade() { + +} + + +# arg 1: the old package version +post_remove() { + remove_service.sh mre + sed -i.pacsave '/^open_basedir/s|:/var/log/mre:/usr/local/lib/mre||' /etc/php/php.ini +} + +op=$1 +shift +$op $* |