• Creates a new group on the system.

    Parameters

    • groupName: string

      The name of the group to create.

    • existingGroups: string[]

      A list of existing group names.

    Returns Promise<{
        error: string;
        message?: undefined;
        success: boolean;
    } | {
        error?: undefined;
        message: string;
        success: boolean;
    }>

    • Success or error message.