summaryrefslogtreecommitdiff
path: root/www-apps/lxr/files/reconfig
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-12-24 14:11:38 +0000
committerV3n3RiX <venerix@redcorelinux.org>2018-12-24 14:11:38 +0000
commitde49812990871e1705b64051c35161d5e6400269 (patch)
tree5e1e8fcb0ff4579dbd22a1bfee28a6b97dc8aaeb /www-apps/lxr/files/reconfig
parent536c3711867ec947c1738f2c4b96f22e4863322d (diff)
gentoo resync : 24.12.2018
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