summaryrefslogtreecommitdiff
path: root/www-apps/lxr/files/reconfig
diff options
context:
space:
mode:
Diffstat (limited to 'www-apps/lxr/files/reconfig')
-rw-r--r--www-apps/lxr/files/reconfig21
1 files changed, 0 insertions, 21 deletions
diff --git a/www-apps/lxr/files/reconfig b/www-apps/lxr/files/reconfig
deleted file mode 100644
index e9e2f47b3f69..000000000000
--- a/www-apps/lxr/files/reconfig
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-
-die() {
- echo "#####"
- echo "$@"
- echo "#####"
- exit 1
-}
-
-if [[ $1 == "install" ]] ; then
- cd "${MY_INSTALLDIR}" || die
- files="lxr.conf $(ls ._cfg*lxr.conf 2>/dev/null)"
- sed -i \
- -e "s|/lxr|${VHOST_APPDIR}|" \
- -e "s|192.168.1.3/lxr|${VHOST_HOSTNAME}${VHOST_APPDIR}|" \
- ${files} || die
-elif [[ $1 = "clean" ]] ; then
- echo $1
-fi
-
-exit 0