Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 61 for venv (0.01 sec)

  1. ExecJob.java

    jvmOptions(buf.toString()); L124: } L125: L126: public ExecJob jvmOptions(final String... options) { L127: Collections.addAll(jvmOptions, options); L128: return this; L129: } L130: L131: public ExecJob lastaEnv(final String env) { L132: lastaEnv = env; L133: return this; L134: } L135: L136: protected void addSystemProperty(final List<String> cmdList, final String name, final String defaultValue, final String appendValue) { L137: final String value = System.getProperty(name);...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      7.7K bytes
  2. preinst

    L15: L16:# Sets the default values for fess variables used in this script L17:FESS_USER="${packaging.fess.user}" L18:FESS_GROUP="${packaging.fess.group}" L19:FESS_USER_HOME="${packaging.fess.var.dir}" L20: L21:# Source the default env file L22:FESS_ENV_FILE="${packaging.env.file}" L23:if [ -f "$FESS_ENV_FILE" ]; then L24: . "$FESS_ENV_FILE" L25:fi L26: L27:case "$1" in L28: L29: # Debian #################################################### L30: install|upgrade) L31: L32: # Create fess...
    github.com/codelibs/fess/src/packaging/common/s...
    Thu Dec 01 09:48:15 UTC 2016
      2.3K bytes
  3. postinst

    $1=1 : indicates an upgrade L12: L13: L14: L15:# Sets the default values for fess variables used in this script L16:FESS_USER="${packaging.fess.user}" L17:FESS_GROUP="${packaging.fess.group}" L18: L19:# Source the default env file L20:FESS_ENV_FILE="${packaging.env.file}" L21:if [ -f "$FESS_ENV_FILE" ]; then L22: . "$FESS_ENV_FILE" L23:fi L24: L25:IS_UPGRADE=false L26: L27:case "$1" in L28: L29: # Debian #################################################### L30: configure) L31: L32:...
    github.com/codelibs/fess/src/packaging/common/s...
    Thu Dec 10 01:24:02 UTC 2015
      3.1K bytes
  4. postrm

    default values for fess variables used in this script L54:FESS_USER="${packaging.fess.user}" L55:FESS_GROUP="${packaging.fess.group}" L56:PID_DIR="${packaging.fess.pid.dir}" L57: L58:# Source the default env file L59:if [ "$SOURCE_ENV_FILE" = "true" ]; then L60: FESS_ENV_FILE="${packaging.env.file}" L61: if [ -f "$FESS_ENV_FILE" ]; then L62: . "$FESS_ENV_FILE" L63: fi L64:fi L65: L66:if [ "$REMOVE_SERVICE" = "true" ]; then L67: if command -v systemctl >/dev/null; then L68: ...
    github.com/codelibs/fess/src/packaging/common/s...
    Thu Dec 10 01:24:02 UTC 2015
      2.2K bytes
  5. fess

    L35:PROC_NAME=org.codelibs.fess.FessBoot L36:FESS_USER="${packaging.fess.user}" L37:FESS_GROUP="${packaging.fess.group}" L38:FESS_HOME="${packaging.fess.home.dir}" L39:PID_DIR="${packaging.fess.pid.dir}" L40: L41:# Source the default env file L42:FESS_ENV_FILE="${packaging.env.file}" L43:if [ -f "$FESS_ENV_FILE" ]; then L44: . "$FESS_ENV_FILE" L45:fi L46: L47:exec="$FESS_HOME/bin/fess" L48:prog="fess" L49:pidfile="$PID_DIR/${prog}.pid" L50: L51:export FESS_TEMP_PATH L52:export FESS_LOG_PATH L53:export...
    github.com/codelibs/fess/src/packaging/rpm/init...
    Sun Jan 15 06:32:15 UTC 2023
      3.7K bytes
  6. conffiles

    L1:${packaging.env.file} L2:/etc/init.d/fess L3:/usr/lib/systemd/system/fess.service...
    github.com/codelibs/fess/src/packaging/deb/scri...
    Thu Dec 10 01:24:02 UTC 2015
      76 bytes
  7. packaging.properties

    L1:# Properties used to build to the RPM package L2:# L3: L4:# Environment file L5:packaging.env.file=/etc/sysconfig/fess L6: L7:# Default configuration directory and file to use in bin/plugin script L8: L9:# Simple marker to check that properties are correctly overridden L10:packaging.type=rpm L11: L12:# Custom header for package scripts L13:packaging.scripts.header= L14:packaging.scripts.footer=# Built for ${project.name}-${project.version} (${packaging.type})...
    github.com/codelibs/fess/src/packaging/rpm/pack...
    Thu Dec 10 01:24:02 UTC 2015
      420 bytes
  8. SystemHelper.java

    Runnable hook) { L420: shutdownHookList.add(hook); L421: } L422: L423: public String getHostname() { L424: final Map<String, String> env = getEnvMap(); L425: if (env.containsKey("COMPUTERNAME")) { L426: return env.get("COMPUTERNAME"); L427: } L428: if (env.containsKey("HOSTNAME")) { L429: return env.get("HOSTNAME"); L430: } L431: try { L432: return InetAddress.getLocalHost().getHostAddress(); L433: } catch (final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 17 12:10:08 UTC 2024
      27.2K bytes
  9. packaging.properties

    L1:# Properties used to build to the DEB package L2:# L3: L4:# Environment file L5:packaging.env.file=/etc/default/fess L6: L7:# Simple marker to check that properties are correctly overridden L8:packaging.type=deb L9: L10:# Custom header for package scripts L11:packaging.scripts.header=#!/bin/sh${line.separator}set -e L12:packaging.scripts.footer=exit 0${line.separator}# Built for ${project.name}-${project.version} (${packaging.type})...
    github.com/codelibs/fess/src/packaging/deb/pack...
    Thu Dec 10 01:24:02 UTC 2015
      401 bytes
  10. packaging.properties

    L1:# Common properties for building ZIP,GZ,RPM and DEB packages L2:# L3:# Properties defined here can be overridden with specific settings, L4:# like in rpm/packaging.properties and deb/packaging.properties. L5: L6:# Environment file L7:packaging.env.file= L8: L9:# Default configuration directory and file to use in bin/plugin script L10: L11:# Default values for min/max heap memory allocated to fess java process L12:packaging.fess.heap.min=256m L13:packaging.fess.heap.max=1g L14: L15:# Specifies...
    github.com/codelibs/fess/src/packaging/common/p...
    Thu Dec 10 01:24:02 UTC 2015
      797 bytes
Back to top