Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for gid (0.14 sec)

  1. src/packaging/common/scripts/preinst

            # Create fess user if not existing
            if ! id $FESS_USER > /dev/null 2>&1 ; then
                echo -n "Creating $FESS_USER user..."
                useradd --system \
                        -M \
                        --gid "$FESS_GROUP" \
                        --shell /sbin/nologin \
                        --comment "fess user" \
                        -d "$FESS_USER_HOME"  \
                        "$FESS_USER"
                echo " OK"
            fi
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 01 09:48:15 GMT 2016
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. uidNumber */
        String LDAP_ATTR_UID_NUMBER = "ldap.attr.uidNumber";
    
        /** The key of the configuration. e.g. gidNumber */
        String LDAP_ATTR_GID_NUMBER = "ldap.attr.gidNumber";
    
        /** The key of the configuration. e.g. homeDirectory */
        String LDAP_ATTR_HOME_DIRECTORY = "ldap.attr.homeDirectory";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: gidNumber */
        public static final String LABELS_group_gidNumber = "{labels.group_gidNumber}";
    
        /** The key of the message: gidNumber */
        public static final String LABELS_GID_NUMBER = "{labels.gidNumber}";
    
        /** The key of the message: Home Directory */
        public static final String LABELS_user_homeDirectory = "{labels.user_homeDirectory}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
Back to top