subiquity/system_setup/models/wslconfadvanced.py

47 lines
1.4 KiB
Python

# Copyright 2015 Canonical, Ltd.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3.
#
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import logging
import attr
log = logging.getLogger("system_setup.models.wslconfadvanced")
@attr.s
class WSLConfigurationAdvanced(object):
interop_enabled = attr.ib()
interop_appendwindowspath = attr.ib()
automount_enabled = attr.ib()
automount_mountfstab = attr.ib()
systemd_enabled = attr.ib()
class WSLConfigurationAdvancedModel(object):
"""Model representing integration"""
def __init__(self):
self._wslconfadvanced = None
def apply_settings(self, result):
d = result.__dict__
self._wslconfadvanced = WSLConfigurationAdvanced(**d)
@property
def wslconfadvanced(self):
return self._wslconfadvanced
def __repr__(self):
return "<WSL Conf Advanced: {}>".format(self.wslconfadvanced)