make subiquity.common.filesystem into a package

This commit is contained in:
Michael Hudson-Doyle 2021-05-31 12:40:40 +12:00
parent d444177932
commit d75af226a5
7 changed files with 38 additions and 6 deletions

View File

@ -10,6 +10,7 @@ subiquity/client/controllers/network.py
subiquity/client/controllers/progress.py
subiquity/client/controllers/proxy.py
subiquity/client/controllers/refresh.py
subiquity/client/controllers/serial.py
subiquity/client/controllers/snaplist.py
subiquity/client/controllers/ssh.py
subiquity/client/controllers/welcome.py
@ -31,11 +32,13 @@ subiquity/common/api/tests/test_client.py
subiquity/common/api/tests/test_endtoend.py
subiquity/common/api/tests/test_server.py
subiquity/common/errorreport.py
subiquity/common/filesystem.py
subiquity/common/filesystem/__init__.py
subiquity/common/filesystem/manipulator.py
subiquity/common/filesystem/tests/__init__.py
subiquity/common/filesystem/tests/test_manipulator.py
subiquity/common/__init__.py
subiquity/common/serialize.py
subiquity/common/tests/__init__.py
subiquity/common/tests/test_filesystem.py
subiquity/common/tests/test_serialization.py
subiquity/common/types.py
subiquitycore/async_helpers.py
@ -168,6 +171,7 @@ subiquity/ui/views/keyboard.py
subiquity/ui/views/mirror.py
subiquity/ui/views/proxy.py
subiquity/ui/views/refresh.py
subiquity/ui/views/serial.py
subiquity/ui/views/snaplist.py
subiquity/ui/views/ssh.py
subiquity/ui/views/tests/__init__.py

View File

@ -19,7 +19,7 @@ import logging
from subiquitycore.lsb_release import lsb_release
from subiquity.client.controller import SubiquityTuiController
from subiquity.common.filesystem import FilesystemManipulator
from subiquity.common.filesystem.manipulator import FilesystemManipulator
from subiquity.common.types import ProbeStatus
from subiquity.models.filesystem import (
Bootloader,

View File

@ -0,0 +1,14 @@
# Copyright 2021 Canonical, Ltd.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

View File

@ -22,7 +22,7 @@ from subiquity.models.filesystem import (
Partition,
)
log = logging.getLogger('subiquity.common.filesystem')
log = logging.getLogger('subiquity.common.filesystem.manipulator')
BIOS_GRUB_SIZE_BYTES = 1 * 1024 * 1024 # 1MiB

View File

@ -0,0 +1,14 @@
# Copyright 2021 Canonical, Ltd.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

View File

@ -15,7 +15,7 @@
import unittest
from subiquity.common.filesystem import (
from subiquity.common.filesystem.manipulator import (
FilesystemManipulator,
)
from subiquity.models.tests.test_filesystem import (

View File

@ -37,7 +37,7 @@ from subiquitycore.lsb_release import lsb_release
from subiquity.common.apidef import API
from subiquity.common.errorreport import ErrorReportKind
from subiquity.common.filesystem import FilesystemManipulator
from subiquity.common.filesystem.manipulator import FilesystemManipulator
from subiquity.common.types import (
Bootloader,
GuidedChoice,