Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/accounts/implementation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -291,4 +291,4 @@ lifetime of the SSH session. NOTE that not all NSS-provided accounts will be abl
Apps and containers
-------------------

There is no interaction between the host identity providers and accounts in apps or incus containers.
There is no interaction between the host identity providers and accounts in apps containers.
9 changes: 0 additions & 9 deletions src/middlewared/middlewared/api/base/types/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,6 @@

XID_MAX = 2 ** 32 - 2 # uid_t -1 can have special meaning depending on context
# TRUENAS_IDMAP_MAX + 1
INCUS_IDMAP_MIN = 2147000001
# Each unpriviliged container with isolated idmap will require at least 65536.
# Lets reserve enough so we can run at least 7 of these.
# Increasing this would go above signed 32 bits (>= 2147483648) which might
# cause problems for programs that do not expect it (e.g. filesystems like
# devpts and some syscalls like setfsuid())
INCUS_MAX_ISOLATED_CONTAINER = 7
INCUS_IDMAP_COUNT = 65536 * INCUS_MAX_ISOLATED_CONTAINER
INCUS_IDMAP_MAX = INCUS_IDMAP_MIN + INCUS_IDMAP_COUNT
TRUENAS_IDMAP_DEFAULT_LOW = 90000001

DEFAULT_VALID_CHARS = string.ascii_letters + string.digits + '_' + '-' + '.'
Expand Down
4 changes: 0 additions & 4 deletions src/middlewared/middlewared/api/v25_04_0/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,5 @@
from .tn_connect import * # noqa
from .truenas import * # noqa
from .user import * # noqa
from .virt_device import * # noqa
from .virt_global import * # noqa
from .virt_instance import * # noqa
from .virt_volume import * # noqa
from .webui_enclosure import * # noqa
from .webui_main_dashboard import * # noqa
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ class PoolDatasetDetailsModel(BaseModel):
iscsi_shares: list[PDD_ISCSIEntry]
vms: list[PDD_VMEntry]
apps: list[PDD_AppEntry]
virt_instances: list[PDD_VirtEntry]
replication_tasks_count: int
snapshot_tasks_count: int
cloudsync_tasks_count: int
Expand Down
198 changes: 0 additions & 198 deletions src/middlewared/middlewared/api/v25_04_0/virt_device.py

This file was deleted.

70 changes: 0 additions & 70 deletions src/middlewared/middlewared/api/v25_04_0/virt_global.py

This file was deleted.

Loading