diff options
author | 2004-09-26 12:40:40 +0000 | |
---|---|---|
committer | 2004-09-26 12:40:40 +0000 | |
commit | bc68939d0a2a02fab785ccef2d7507e44c455a92 (patch) | |
tree | d79ba3f8ef70ff2feee4f42e4a28663bd32e8bcc /www-apps/otrs/files | |
parent | bug 62443 (Manifest recommit) (diff) | |
download | gentoo-2-bc68939d0a2a02fab785ccef2d7507e44c455a92.tar.gz gentoo-2-bc68939d0a2a02fab785ccef2d7507e44c455a92.tar.bz2 gentoo-2-bc68939d0a2a02fab785ccef2d7507e44c455a92.zip |
Version bump (bug #65217), reorganized install location
Diffstat (limited to 'www-apps/otrs/files')
-rw-r--r-- | www-apps/otrs/files/digest-otrs-1.3.1 | 1 | ||||
-rw-r--r-- | www-apps/otrs/files/postinstall-en-1.3.1.txt | 19 | ||||
-rw-r--r-- | www-apps/otrs/files/reconfig-1.3.1 | 16 |
3 files changed, 36 insertions, 0 deletions
diff --git a/www-apps/otrs/files/digest-otrs-1.3.1 b/www-apps/otrs/files/digest-otrs-1.3.1 new file mode 100644 index 000000000000..ee117b323e3f --- /dev/null +++ b/www-apps/otrs/files/digest-otrs-1.3.1 @@ -0,0 +1 @@ +MD5 18205697842efc22fac0b7af2790093e otrs-1.3.1-01.tar.bz2 6248257 diff --git a/www-apps/otrs/files/postinstall-en-1.3.1.txt b/www-apps/otrs/files/postinstall-en-1.3.1.txt new file mode 100644 index 000000000000..8d78f8646c91 --- /dev/null +++ b/www-apps/otrs/files/postinstall-en-1.3.1.txt @@ -0,0 +1,19 @@ + + +*********************************************************** +Your installation is almost complete. +1. You now need to edit ${VHOST_ROOT}/${P}/Kernel/Config.pm and set some +Kernel::Config options (FQDN, SystemID, TicketHook, Home, ...). + +*********************************************************** +2. Configure and restart your webserver. +Read /usr/share/doc/${P}/README.webserver.gz. Sample config files are in +${VHOST_ROOT}/${P}/scripts + +*********************************************************** +3. Setup your database. Read /usr/share/doc/${P}/README.database.gz + +*********************************************************** + +4. Read /usr/share/doc/${P}/INSTALL.gz , pp. 9-12, to finish the installation. +If you are upgrading, read /usr/share/doc/${P}/UPGRADING.gz diff --git a/www-apps/otrs/files/reconfig-1.3.1 b/www-apps/otrs/files/reconfig-1.3.1 new file mode 100644 index 000000000000..021ff84fb0bf --- /dev/null +++ b/www-apps/otrs/files/reconfig-1.3.1 @@ -0,0 +1,16 @@ +#!/bin/bash + +if [ $1 = "install" ]; then + # set $HOME + sed -i "s|/opt/otrs|${VHOST_ROOT}/${P}|" ${VHOST_ROOT}/${P}/Kernel/Config.pm ${VHOST_ROOT}/${P}/scripts/* + # set permissions + ${VHOST_ROOT}/${P}/bin/SetPermissions.sh ${VHOST_ROOT}/${P} otrs apache apache apache > /dev/null + # set libdir + sed -e "s|\$Bin/\.\./\.\.|${VHOST_ROOT}/${P}|g" -i ${VHOST_CGIBINDIR}/${PN}/* + +elif [ $1 = "clean" ]; then + rm -rf ${VHOST_ROOT}/${P}/Kernel/Config.pm.dist ${VHOST_ROOT}/${P}/scripts/* + rm -rf ${VHOST_CGIBINDIR}/${PN} + cd ${VHOST_ROOT}/${P} + rm -rf bin doc scripts var Kernel/Config Kernel/Language* Modules Output System cpan-lib +fi |