Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for chkconfig (0.11 sec)

  1. src/packaging/common/scripts/postrm

    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
    
        if command -v update-rc.d >/dev/null; then
            update-rc.d fess remove >/dev/null || true
        fi
    fi
    
    if [ "$REMOVE_DIRS" = "true" ]; then
    Registered: 2024-10-31 13:40
    - Last Modified: 2015-12-10 01:24
    - 2.2K bytes
    - Viewed (0)
  2. src/packaging/common/scripts/postinst

            echo " sudo systemctl start fess.service"
    
        elif command -v chkconfig >/dev/null; then
            echo "### NOT starting on installation, please execute the following statements to configure fess service to start automatically using chkconfig"
            echo " sudo chkconfig --add fess"
            echo "### You can start fess service by executing"
            echo " sudo service fess start"
    
    Registered: 2024-10-31 13:40
    - Last Modified: 2015-12-10 01:24
    - 3.1K bytes
    - Viewed (0)
  3. src/packaging/rpm/init.d/fess

    #!/bin/sh
    #
    # fess <summary>
    #
    # chkconfig:   2345 80 20
    # description: Starts and stops a single fess instance on this system 
    #
    
    ### BEGIN INIT INFO
    # Provides: Fess
    # Required-Start: $network $named
    # Required-Stop: $network $named
    # Default-Start: 2 3 4 5
    # Default-Stop: 0 1 6
    # Short-Description: This service manages the fess daemon
    Registered: 2024-10-31 13:40
    - Last Modified: 2023-01-15 06:32
    - 3.7K bytes
    - Viewed (0)
  4. cni/pkg/install/cniconfig.go

    Ben Leggett <******@****.***> 1722537494 -0400
    Registered: 2024-11-06 22:53
    - Last Modified: 2024-08-01 18:38
    - 8.2K bytes
    - Viewed (0)
  5. cni/pkg/util/pluginutil.go

    	return
    }
    
    // Marshal the CNI config map and append a new line
    func MarshalCNIConfig(cniConfigMap map[string]any) ([]byte, error) {
    	cniConfig, err := json.MarshalIndent(cniConfigMap, "", "  ")
    	if err != nil {
    		return nil, err
    	}
    	cniConfig = append(cniConfig, "\n"...)
    	return cniConfig, nil
    Registered: 2024-11-06 22:53
    - Last Modified: 2024-01-26 20:34
    - 3.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/BadWordService.java

            } catch (final IOException e) {
                logger.warn("Failed to read a sugget elevate word.", e);
            }
        }
    
        public void exportCsv(final Writer writer) {
            final CsvConfig cfg = new CsvConfig(',', '"', '"');
            cfg.setEscapeDisabled(false);
            cfg.setQuoteDisabled(false);
            @SuppressWarnings("resource")
            final CsvWriter csvWriter = new CsvWriter(writer, cfg);
            try {
    Registered: 2024-10-31 13:40
    - Last Modified: 2024-02-22 01:53
    - 7.3K bytes
    - Viewed (0)
  7. cmd/config-common.go

    	return err
    }
    
    func saveConfig(ctx context.Context, store objectIO, configFile string, data []byte) error {
    	return saveConfigWithOpts(ctx, store, configFile, data, ObjectOptions{MaxParity: true})
    }
    
    func checkConfig(ctx context.Context, objAPI ObjectLayer, configFile string) error {
    	if _, err := objAPI.GetObjectInfo(ctx, minioMetaBucket, configFile, ObjectOptions{}); err != nil {
    		// Treat object not found as config not found.
    Registered: 2024-11-03 19:28
    - Last Modified: 2023-09-18 17:00
    - 3.1K bytes
    - Viewed (0)
Back to top