| 1 |
# Copyright 1999-2004 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/webapp.eclass,v 1.24 2004/06/25 00:39:48 vapier Exp $
|
| 4 |
#
|
| 5 |
# eclass/webapp.eclass
|
| 6 |
# Eclass for installing applications to run under a web server
|
| 7 |
#
|
| 8 |
# Part of the implementation of GLEP #11
|
| 9 |
#
|
| 10 |
# Author(s) Stuart Herbert <stuart@gentoo.org>
|
| 11 |
#
|
| 12 |
# ------------------------------------------------------------------------
|
| 13 |
#
|
| 14 |
# The master copy of this eclass is held in Stu's subversion repository.
|
| 15 |
#
|
| 16 |
# If you make changes to this file and don't tell Stu, chances are that
|
| 17 |
# your changes will be overwritten the next time Stu releases a new version
|
| 18 |
# of webapp-config.
|
| 19 |
#
|
| 20 |
# ------------------------------------------------------------------------
|
| 21 |
|
| 22 |
ECLASS=webapp
|
| 23 |
INHERITED="$INHERITED $ECLASS"
|
| 24 |
SLOT="${PVR}"
|
| 25 |
IUSE="$IUSE vhosts"
|
| 26 |
DEPEND="$DEPEND >=net-www/webapp-config-1.7 app-portage/gentoolkit"
|
| 27 |
|
| 28 |
EXPORT_FUNCTIONS pkg_postinst pkg_setup src_install pkg_prerm
|
| 29 |
|
| 30 |
INSTALL_DIR="/$PN"
|
| 31 |
IS_UPGRADE=0
|
| 32 |
IS_REPLACE=0
|
| 33 |
|
| 34 |
INSTALL_CHECK_FILE="installed_by_webapp_eclass"
|
| 35 |
|
| 36 |
ETC_CONFIG="/etc/vhosts/webapp-config"
|
| 37 |
|
| 38 |
# ------------------------------------------------------------------------
|
| 39 |
# INTERNAL FUNCTION - USED BY THIS ECLASS ONLY
|
| 40 |
#
|
| 41 |
# Check whether a specified file exists within the image/ directory
|
| 42 |
# or not.
|
| 43 |
#
|
| 44 |
# @param $1 - file to look for
|
| 45 |
# @param $2 - prefix directory to use
|
| 46 |
# @return 0 on success, never returns on an error
|
| 47 |
# ------------------------------------------------------------------------
|
| 48 |
|
| 49 |
function webapp_checkfileexists ()
|
| 50 |
{
|
| 51 |
local my_prefix
|
| 52 |
|
| 53 |
[ -n "$2" ] && my_prefix="$2/" || my_prefix=
|
| 54 |
|
| 55 |
if [ ! -e "${my_prefix}$1" ]; then
|
| 56 |
msg="ebuild fault: file '$1' not found"
|
| 57 |
eerror "$msg"
|
| 58 |
eerror "Please report this as a bug at http://bugs.gentoo.org/"
|
| 59 |
die "$msg"
|
| 60 |
fi
|
| 61 |
}
|
| 62 |
|
| 63 |
# ------------------------------------------------------------------------
|
| 64 |
# INTERNAL FUNCTION - USED BY THIS ECLASS ONLY
|
| 65 |
# ------------------------------------------------------------------------
|
| 66 |
|
| 67 |
function webapp_check_installedat
|
| 68 |
{
|
| 69 |
local my_output
|
| 70 |
|
| 71 |
/usr/sbin/webapp-config --show-installed -h localhost -d "$INSTALL_DIR" 2> /dev/null
|
| 72 |
}
|
| 73 |
|
| 74 |
# ------------------------------------------------------------------------
|
| 75 |
# INTERNAL FUNCTION - USED BY THIS ECLASS ONLY
|
| 76 |
# ------------------------------------------------------------------------
|
| 77 |
|
| 78 |
function webapp_import_config ()
|
| 79 |
{
|
| 80 |
if [ -z "${MY_HTDOCSDIR}" ]; then
|
| 81 |
. /etc/conf.d/webapp-config
|
| 82 |
fi
|
| 83 |
|
| 84 |
if [ -z "${MY_HTDOCSDIR}" ]; then
|
| 85 |
libsh_edie "/etc/conf.d/webapp-config not imported"
|
| 86 |
fi
|
| 87 |
}
|
| 88 |
|
| 89 |
# ------------------------------------------------------------------------
|
| 90 |
# INTERNAL FUNCTION - USED BY THIS ECLASS ONLY
|
| 91 |
#
|
| 92 |
# ------------------------------------------------------------------------
|
| 93 |
|
| 94 |
function webapp_strip_appdir ()
|
| 95 |
{
|
| 96 |
local my_stripped="$1"
|
| 97 |
echo "$1" | sed -e "s|${MY_APPDIR}/||g;"
|
| 98 |
}
|
| 99 |
|
| 100 |
function webapp_strip_d ()
|
| 101 |
{
|
| 102 |
echo "$1" | sed -e "s|${D}||g;"
|
| 103 |
}
|
| 104 |
|
| 105 |
function webapp_strip_cwd ()
|
| 106 |
{
|
| 107 |
local my_stripped="$1"
|
| 108 |
echo "$1" | sed -e 's|/./|/|g;'
|
| 109 |
}
|
| 110 |
|
| 111 |
# ------------------------------------------------------------------------
|
| 112 |
# EXPORTED FUNCTION - FOR USE IN EBUILDS
|
| 113 |
#
|
| 114 |
# Identify a config file for a web-based application.
|
| 115 |
#
|
| 116 |
# @param $1 - config file
|
| 117 |
# ------------------------------------------------------------------------
|
| 118 |
|
| 119 |
function webapp_configfile ()
|
| 120 |
{
|
| 121 |
webapp_checkfileexists "$1" "$D"
|
| 122 |
echo $1
|
| 123 |
local MY_FILE="`webapp_strip_appdir \"$1\"`"
|
| 124 |
echo $MY_FILE
|
| 125 |
|
| 126 |
einfo "(config) $MY_FILE"
|
| 127 |
echo "$MY_FILE" >> ${D}${WA_CONFIGLIST}
|
| 128 |
}
|
| 129 |
|
| 130 |
# ------------------------------------------------------------------------
|
| 131 |
# EXPORTED FUNCTION - FOR USE IN EBUILDS
|
| 132 |
#
|
| 133 |
# Install a script that will run after a virtual copy is created, and
|
| 134 |
# before a virtual copy has been removed
|
| 135 |
#
|
| 136 |
# @param $1 - the script to run
|
| 137 |
# ------------------------------------------------------------------------
|
| 138 |
|
| 139 |
function webapp_hook_script ()
|
| 140 |
{
|
| 141 |
webapp_checkfileexists "$1"
|
| 142 |
|
| 143 |
einfo "(hook) $1"
|
| 144 |
cp "$1" "${D}${MY_HOOKSCRIPTSDIR}/`basename $1`" || die "Unable to install $1 into ${D}${MY_HOOKSCRIPTSDIR}/"
|
| 145 |
chmod 555 "${D}${MY_HOOKSCRIPTSDIR}/`basename $1`"
|
| 146 |
}
|
| 147 |
|
| 148 |
# ------------------------------------------------------------------------
|
| 149 |
# EXPORTED FUNCTION - FOR USE IN EBUILDS
|
| 150 |
#
|
| 151 |
# Install a text file containing post-installation instructions.
|
| 152 |
#
|
| 153 |
# @param $1 - language code (use 'en' for now)
|
| 154 |
# @param $2 - the file to install
|
| 155 |
# ------------------------------------------------------------------------
|
| 156 |
|
| 157 |
function webapp_postinst_txt
|
| 158 |
{
|
| 159 |
webapp_checkfileexists "$2"
|
| 160 |
|
| 161 |
einfo "(rtfm) $2 (lang: $1)"
|
| 162 |
cp "$2" "${D}${MY_APPDIR}/postinst-$1.txt"
|
| 163 |
}
|
| 164 |
|
| 165 |
# ------------------------------------------------------------------------
|
| 166 |
# EXPORTED FUNCTION - FOR USE IN EBUILDS
|
| 167 |
#
|
| 168 |
# Identify a script file (usually, but not always PHP or Perl) which is
|
| 169 |
#
|
| 170 |
# Files in this list may be modified to #! the required CGI engine when
|
| 171 |
# installed by webapp-config tool in the future.
|
| 172 |
#
|
| 173 |
# @param $1 - the cgi engine to use
|
| 174 |
# @param $2 - the script file that could run under a cgi-bin
|
| 175 |
#
|
| 176 |
# ------------------------------------------------------------------------
|
| 177 |
|
| 178 |
function webapp_runbycgibin ()
|
| 179 |
{
|
| 180 |
webapp_checkfileexists "$2" "$D"
|
| 181 |
local MY_FILE="`webapp_strip_appdir \"$2\"`"
|
| 182 |
MY_FILE="`webapp_strip_cwd \"$MY_FILE\"`"
|
| 183 |
|
| 184 |
einfo "(cgi-bin) $1 - $MY_FILE"
|
| 185 |
echo "\"$1\" \"$MY_FILE\"" >> "${D}${WA_RUNBYCGIBINLIST}"
|
| 186 |
}
|
| 187 |
|
| 188 |
# ------------------------------------------------------------------------
|
| 189 |
# EXPORTED FUNCTION - FOR USE IN EBUILDS
|
| 190 |
#
|
| 191 |
# Identify a file which must be owned by the webserver's user:group
|
| 192 |
# settings.
|
| 193 |
#
|
| 194 |
# The ownership of the file is NOT set until the application is installed
|
| 195 |
# using the webapp-config tool.
|
| 196 |
#
|
| 197 |
# @param $1 - file to be owned by the webserver user:group combo
|
| 198 |
#
|
| 199 |
# ------------------------------------------------------------------------
|
| 200 |
|
| 201 |
function webapp_serverowned ()
|
| 202 |
{
|
| 203 |
webapp_checkfileexists "$1" "$D"
|
| 204 |
local MY_FILE="`webapp_strip_appdir \"$1\"`"
|
| 205 |
|
| 206 |
einfo "(server owned) $MY_FILE"
|
| 207 |
echo "$MY_FILE" >> "${D}${WA_SOLIST}"
|
| 208 |
}
|
| 209 |
|
| 210 |
# ------------------------------------------------------------------------
|
| 211 |
# EXPORTED FUNCTION - FOR USE IN EBUILDS
|
| 212 |
#
|
| 213 |
# @param $1 - the webserver to install the config file for
|
| 214 |
# (one of apache1, apache2, cherokee)
|
| 215 |
# @param $2 - the config file to install
|
| 216 |
# @param $3 - new name for the config file (default is `basename $2`)
|
| 217 |
# this is an optional parameter
|
| 218 |
#
|
| 219 |
# NOTE:
|
| 220 |
# this function will automagically prepend $1 to the front of your
|
| 221 |
# config file's name
|
| 222 |
# ------------------------------------------------------------------------
|
| 223 |
|
| 224 |
function webapp_server_config ()
|
| 225 |
{
|
| 226 |
webapp_checkfileexists "$2"
|
| 227 |
|
| 228 |
# sort out what the name will be of the config file
|
| 229 |
|
| 230 |
local my_file
|
| 231 |
|
| 232 |
if [ -z "$3" ]; then
|
| 233 |
my_file="$1-`basename $2`"
|
| 234 |
else
|
| 235 |
my_file="$1-$3"
|
| 236 |
fi
|
| 237 |
|
| 238 |
# warning:
|
| 239 |
#
|
| 240 |
# do NOT change the naming convention used here without changing all
|
| 241 |
# the other scripts that also rely upon these names
|
| 242 |
|
| 243 |
einfo "($1) config file '$my_file'"
|
| 244 |
cp "$2" "${D}${MY_SERVERCONFIGDIR}/${my_file}"
|
| 245 |
}
|
| 246 |
|
| 247 |
# ------------------------------------------------------------------------
|
| 248 |
# EXPORTED FUNCTION - FOR USE IN EBUILDS
|
| 249 |
#
|
| 250 |
# @param $1 - the db engine that the script is for
|
| 251 |
# (one of: mysql|postgres)
|
| 252 |
# @param $2 - the sql script to be installed
|
| 253 |
# @param $3 - the older version of the app that this db script
|
| 254 |
# will upgrade from
|
| 255 |
# (do not pass this option if your SQL script only creates
|
| 256 |
# a new db from scratch)
|
| 257 |
# ------------------------------------------------------------------------
|
| 258 |
|
| 259 |
function webapp_sqlscript ()
|
| 260 |
{
|
| 261 |
webapp_checkfileexists "$2"
|
| 262 |
|
| 263 |
# create the directory where this script will go
|
| 264 |
#
|
| 265 |
# scripts for specific database engines go into their own subdirectory
|
| 266 |
# just to keep things readable on the filesystem
|
| 267 |
|
| 268 |
if [ ! -d "${D}${MY_SQLSCRIPTSDIR}/$1" ]; then
|
| 269 |
mkdir -p "${D}${MY_SQLSCRIPTSDIR}/$1" || libsh_die "unable to create directory ${D}${MY_SQLSCRIPTSDIR}/$1"
|
| 270 |
fi
|
| 271 |
|
| 272 |
# warning:
|
| 273 |
#
|
| 274 |
# do NOT change the naming convention used here without changing all
|
| 275 |
# the other scripts that also rely upon these names
|
| 276 |
|
| 277 |
# are we dealing with an 'upgrade'-type script?
|
| 278 |
if [ -n "$3" ]; then
|
| 279 |
# yes we are
|
| 280 |
einfo "($1) upgrade script from ${PN}-${PVR} to $3"
|
| 281 |
cp "$2" "${D}${MY_SQLSCRIPTSDIR}/$1/${3}_to_${PVR}.sql"
|
| 282 |
else
|
| 283 |
# no, we are not
|
| 284 |
einfo "($1) create script for ${PN}-${PVR}"
|
| 285 |
cp "$2" "${D}${MY_SQLSCRIPTSDIR}/$1/${PVR}_create.sql"
|
| 286 |
fi
|
| 287 |
}
|
| 288 |
|
| 289 |
# ------------------------------------------------------------------------
|
| 290 |
# EXPORTED FUNCTION - call from inside your ebuild's src_install AFTER
|
| 291 |
# everything else has run
|
| 292 |
#
|
| 293 |
# For now, we just make sure that root owns everything, and that there
|
| 294 |
# are no setuid files. I'm sure this will change significantly before
|
| 295 |
# the final version!
|
| 296 |
# ------------------------------------------------------------------------
|
| 297 |
|
| 298 |
function webapp_src_install ()
|
| 299 |
{
|
| 300 |
chown -R "${VHOST_DEFAULT_UID}:${VHOST_DEFAULT_GID}" "${D}/"
|
| 301 |
chmod -R u-s "${D}/"
|
| 302 |
chmod -R g-s "${D}/"
|
| 303 |
|
| 304 |
keepdir "${MY_PERSISTDIR}"
|
| 305 |
fowners "root:root" "${MY_PERSISTDIR}"
|
| 306 |
fperms 755 "${MY_PERSISTDIR}"
|
| 307 |
|
| 308 |
# to test whether or not the ebuild has correctly called this function
|
| 309 |
# we add an empty file to the filesystem
|
| 310 |
#
|
| 311 |
# we used to just set a variable in the shell script, but we can
|
| 312 |
# no longer rely on Portage calling both webapp_src_install() and
|
| 313 |
# webapp_pkg_postinst() within the same shell process
|
| 314 |
|
| 315 |
touch "${D}/${MY_APPDIR}/${INSTALL_CHECK_FILE}"
|
| 316 |
}
|
| 317 |
|
| 318 |
# ------------------------------------------------------------------------
|
| 319 |
# EXPORTED FUNCTION - call from inside your ebuild's pkg_config AFTER
|
| 320 |
# everything else has run
|
| 321 |
#
|
| 322 |
# If 'vhosts' USE flag is not set, auto-install this app
|
| 323 |
#
|
| 324 |
# ------------------------------------------------------------------------
|
| 325 |
|
| 326 |
function webapp_pkg_setup ()
|
| 327 |
{
|
| 328 |
# add sanity checks here
|
| 329 |
|
| 330 |
if [ "$SLOT+" != "${PVR}+" ]; then
|
| 331 |
die "ebuild sets SLOT, overrides webapp.eclass"
|
| 332 |
fi
|
| 333 |
|
| 334 |
# pull in the shared configuration file
|
| 335 |
|
| 336 |
G_HOSTNAME="localhost"
|
| 337 |
. "${ETC_CONFIG}" || die "Unable to open file ${ETC_CONFIG}"
|
| 338 |
|
| 339 |
# are we installing a webapp-config solution over the top of a
|
| 340 |
# non-webapp-config solution?
|
| 341 |
|
| 342 |
if ! use vhosts ; then
|
| 343 |
local my_dir="$VHOST_ROOT/$MY_HTDOCSBASE/$PN"
|
| 344 |
local my_output
|
| 345 |
|
| 346 |
if [ -d "$my_dir" ] ; then
|
| 347 |
einfo "You already have something installed in $my_dir"
|
| 348 |
einfo "Are you trying to install over the top of something I cannot upgrade?"
|
| 349 |
|
| 350 |
my_output="`webapp_check_installedat`"
|
| 351 |
|
| 352 |
if [ "$?" != "0" ]; then
|
| 353 |
|
| 354 |
# okay, whatever is there, it isn't webapp-config-compatible
|
| 355 |
ewarn
|
| 356 |
ewarn "Whatever is in $my_dir, it's not"
|
| 357 |
ewarn "compatible with webapp-config."
|
| 358 |
ewarn
|
| 359 |
ewarn "This ebuild may be overwriting important files."
|
| 360 |
ewarn
|
| 361 |
elif [ "`echo $my_output | awk '{ print $1 }'`" != "$PN" ]; then
|
| 362 |
eerror "$my_dir contains $my_output"
|
| 363 |
eerror "I cannot upgrade that"
|
| 364 |
die "Cannot upgrade contents of $my_dir"
|
| 365 |
else
|
| 366 |
einfo
|
| 367 |
einfo "I can upgrade the contents of $my_dir"
|
| 368 |
einfo
|
| 369 |
fi
|
| 370 |
fi
|
| 371 |
fi
|
| 372 |
}
|
| 373 |
|
| 374 |
function webapp_someunusedfunction ()
|
| 375 |
{
|
| 376 |
# are we emerging something that is already installed?
|
| 377 |
|
| 378 |
if [ -d "${D}${MY_APPROOT}/${MY_APPSUFFIX}" ]; then
|
| 379 |
# yes we are
|
| 380 |
ewarn "Removing existing copy of ${PN}-${PVR}"
|
| 381 |
rm -rf "${D}${MY_APPROOT}/${MY_APPSUFFIX}"
|
| 382 |
fi
|
| 383 |
}
|
| 384 |
|
| 385 |
function webapp_getinstalltype ()
|
| 386 |
{
|
| 387 |
# or are we upgrading?
|
| 388 |
|
| 389 |
if ! use vhosts ; then
|
| 390 |
# we only run webapp-config if vhosts USE flag is not set
|
| 391 |
|
| 392 |
local my_output
|
| 393 |
|
| 394 |
my_output="`webapp_check_installedat`"
|
| 395 |
|
| 396 |
if [ "$?" = "0" ] ; then
|
| 397 |
# something is already installed there
|
| 398 |
#
|
| 399 |
# make sure it isn't the same version
|
| 400 |
|
| 401 |
local my_pn="`echo $my_output | awk '{ print $1 }'`"
|
| 402 |
local my_pvr="`echo $my_output | awk '{ print $2 }'`"
|
| 403 |
|
| 404 |
REMOVE_PKG="${my_pn}-${my_pvr}"
|
| 405 |
|
| 406 |
if [ "$my_pn" == "$PN" ]; then
|
| 407 |
if [ "$my_pvr" != "$PVR" ]; then
|
| 408 |
einfo "This is an upgrade"
|
| 409 |
IS_UPGRADE=1
|
| 410 |
else
|
| 411 |
einfo "This is a re-installation"
|
| 412 |
IS_REPLACE=1
|
| 413 |
fi
|
| 414 |
else
|
| 415 |
einfo "$my_ouptut is installed there"
|
| 416 |
fi
|
| 417 |
else
|
| 418 |
einfo "This is an installation"
|
| 419 |
fi
|
| 420 |
fi
|
| 421 |
}
|
| 422 |
|
| 423 |
function webapp_src_preinst ()
|
| 424 |
{
|
| 425 |
# create the directories that we need
|
| 426 |
|
| 427 |
dodir "${MY_HTDOCSDIR}"
|
| 428 |
dodir "${MY_HOSTROOTDIR}"
|
| 429 |
dodir "${MY_CGIBINDIR}"
|
| 430 |
dodir "${MY_ICONSDIR}"
|
| 431 |
dodir "${MY_ERRORSDIR}"
|
| 432 |
dodir "${MY_SQLSCRIPTSDIR}"
|
| 433 |
dodir "${MY_HOOKSCRIPTSDIR}"
|
| 434 |
}
|
| 435 |
|
| 436 |
function webapp_pkg_postinst ()
|
| 437 |
{
|
| 438 |
. "${ETC_CONFIG}"
|
| 439 |
|
| 440 |
# sanity checks, to catch bugs in the ebuild
|
| 441 |
|
| 442 |
if [ ! -f "${MY_APPDIR}/${INSTALL_CHECK_FILE}" ]; then
|
| 443 |
eerror
|
| 444 |
eerror "This ebuild did not call webapp_src_install() at the end"
|
| 445 |
eerror "of the src_install() function"
|
| 446 |
eerror
|
| 447 |
eerror "Please log a bug on http://bugs.gentoo.org"
|
| 448 |
eerror
|
| 449 |
eerror "You should use emerge -C to remove this package, as the"
|
| 450 |
eerror "installation is incomplete"
|
| 451 |
eerror
|
| 452 |
die "Ebuild did not call webapp_src_install() - report to http://bugs.gentoo.org"
|
| 453 |
fi
|
| 454 |
|
| 455 |
# if 'vhosts' is not set in your USE flags, we install a copy of
|
| 456 |
# this application in /var/www/localhost/htdocs/${PN}/ for you
|
| 457 |
|
| 458 |
if ! use vhosts ; then
|
| 459 |
echo
|
| 460 |
einfo "vhosts USE flag not set - auto-installing using webapp-config"
|
| 461 |
|
| 462 |
webapp_getinstalltype
|
| 463 |
|
| 464 |
G_HOSTNAME="localhost"
|
| 465 |
. "${ETC_CONFIG}"
|
| 466 |
|
| 467 |
local my_mode=-I
|
| 468 |
|
| 469 |
if [ "$IS_REPLACE" = "1" ]; then
|
| 470 |
einfo "${PN}-${PVR} is already installed - replacing"
|
| 471 |
/usr/sbin/webapp-config -C -d "$INSTALL_DIR"
|
| 472 |
elif [ "$IS_UPGRADE" = "1" ]; then
|
| 473 |
einfo "$REMOVE_PKG is already installed - upgrading"
|
| 474 |
my_mode=-U
|
| 475 |
else
|
| 476 |
einfo "${PN}-${PVR} is not installed - using install mode"
|
| 477 |
fi
|
| 478 |
|
| 479 |
my_cmd="/usr/sbin/webapp-config $my_mode -h localhost -u root -d $INSTALL_DIR ${PN} ${PVR}"
|
| 480 |
einfo "Running $my_cmd"
|
| 481 |
$my_cmd
|
| 482 |
|
| 483 |
# remove the old version
|
| 484 |
#
|
| 485 |
# why do we do this? well ...
|
| 486 |
#
|
| 487 |
# normally, emerge -u installs a new version and then removes the
|
| 488 |
# old version. however, if the new version goes into a different
|
| 489 |
# slot to the old version, then the old version gets left behind
|
| 490 |
#
|
| 491 |
# if USE=-vhosts, then we want to remove the old version, because
|
| 492 |
# the user is relying on portage to do the magical thing for it
|
| 493 |
|
| 494 |
if [ "$IS_UPGRADE" = "1" ] ; then
|
| 495 |
einfo "Removing old version $REMOVE_PKG"
|
| 496 |
|
| 497 |
emerge -C "$CATEGORY/$REMOVE_PKG"
|
| 498 |
fi
|
| 499 |
else
|
| 500 |
# vhosts flag is on
|
| 501 |
#
|
| 502 |
# let's tell the administrator what to do next
|
| 503 |
|
| 504 |
einfo
|
| 505 |
einfo "The 'vhosts' USE flag is switched ON"
|
| 506 |
einfo "This means that Portage will not automatically run webapp-config to"
|
| 507 |
einfo "complete the installation."
|
| 508 |
einfo
|
| 509 |
einfo "To install $PN-$PVR into a virtual host, run the following command:"
|
| 510 |
einfo
|
| 511 |
einfo " webapp-config -I -h <host> -d $PN $PN $PVR"
|
| 512 |
einfo
|
| 513 |
einfo "For more details, see the webapp-config(8) man page"
|
| 514 |
fi
|
| 515 |
|
| 516 |
return 0
|
| 517 |
}
|
| 518 |
|
| 519 |
function webapp_pkg_prerm ()
|
| 520 |
{
|
| 521 |
# remove any virtual installs that there are
|
| 522 |
|
| 523 |
local my_output
|
| 524 |
local x
|
| 525 |
|
| 526 |
my_output="`webapp-config --list-installs $PN $PVR`"
|
| 527 |
|
| 528 |
if [ "$?" != "0" ]; then
|
| 529 |
return
|
| 530 |
fi
|
| 531 |
|
| 532 |
# the changes to IFS here are necessary to ensure that we can cope
|
| 533 |
# with directories that contain spaces in the file names
|
| 534 |
|
| 535 |
# OLD_IFS="$IFS"
|
| 536 |
# IFS="
"
|
| 537 |
|
| 538 |
for x in $my_output ; do
|
| 539 |
# IFS="$OLD_IFS"
|
| 540 |
|
| 541 |
[ -f $x/.webapp ] && . $x/.webapp || ewarn "Cannot find file $x/.webapp"
|
| 542 |
|
| 543 |
if [ -z "WEB_HOSTNAME" -o -z "WEB_INSTALLDIR" ]; then
|
| 544 |
ewarn "Don't forget to use webapp-config to remove the copy of"
|
| 545 |
ewarn "${PN}-${PVR} installed in"
|
| 546 |
ewarn
|
| 547 |
ewarn " $x"
|
| 548 |
ewarn
|
| 549 |
else
|
| 550 |
# we have enough information to remove the virtual copy ourself
|
| 551 |
|
| 552 |
webapp-config -C -h ${WEB_HOSTNAME} -d ${WEB_INSTALLDIR}
|
| 553 |
|
| 554 |
# if the removal fails - we carry on anyway!
|
| 555 |
fi
|
| 556 |
# IFS="
"
|
| 557 |
done
|
| 558 |
|
| 559 |
# IFS="$OLD_IFS"
|
| 560 |
}
|