Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for systemctl (0.18 sec)

  1. src/packaging/common/scripts/postrm

        FESS_ENV_FILE="${packaging.env.file}"
        if [ -f "$FESS_ENV_FILE" ]; then
            . "$FESS_ENV_FILE"
        fi
    fi
    
    if [ "$REMOVE_SERVICE" = "true" ]; then
        if command -v systemctl >/dev/null; then
            systemctl --no-reload disable fess.service > /dev/null 2>&1 || true
        fi
    
        if command -v chkconfig >/dev/null; then
            chkconfig --del fess 2> /dev/null || true
        fi
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 2.2K bytes
    - Viewed (0)
Back to top