Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Nabors (0.17 sec)

  1. src/packaging/common/scripts/postinst

        configure)
    
            # If $1=configure and $2 is set, this is an upgrade
            if [ -n $2 ]; then
                IS_UPGRADE=true
            fi
        ;;
        abort-upgrade|abort-remove|abort-deconfigure)
        ;;
    
        # RedHat ####################################################
        1)
            # If $1=1 this is an install
            IS_UPGRADE=false
        ;;
        2)
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 3.1K bytes
    - Viewed (0)
  2. src/packaging/common/scripts/postrm

        remove)
            REMOVE_DIRS=true
            REMOVE_SERVICE=true
        ;;
    
        purge)
            REMOVE_USER_AND_GROUP=true
            SOURCE_ENV_FILE=false
        ;;
        failed-upgrade|abort-install|abort-upgrade|disappear|upgrade|disappear)
        ;;
    
        # RedHat ####################################################
        0)
            REMOVE_DIRS=true
            REMOVE_SERVICE=true
            REMOVE_USER_AND_GROUP=true
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 2.2K bytes
    - Viewed (0)
  3. src/packaging/common/scripts/preinst

                        --shell /bin/false \
                        --home "$FESS_USER_HOME"  \
                        "$FESS_USER"
                echo " OK"
            fi
        ;;
        abort-deconfigure|abort-upgrade|abort-remove)
        ;;
    
        # RedHat ####################################################
        1|2)
    
            # Create fess group if not existing
            if ! getent group "$FESS_GROUP" > /dev/null 2>&1 ; then
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 01 09:48:15 GMT 2016
    - 2.3K bytes
    - Viewed (0)
Back to top