Drop initial root thin pool definition

See https://github.com/QubesOS/qubes-core-admin/pull/344#issuecomment-629626978
这个提交包含在:
Frédéric Pierret (fepitre) 2020-05-18 13:01:42 +02:00
父节点 e4d7df4976
当前提交 f06f41d594
找不到此签名对应的密钥
GPG 密钥 ID: 484010B5CDC576E2

查看文件

@ -1197,17 +1197,6 @@ class Qubes(qubes.PropertyHolder):
pool_configs = copy.deepcopy(qubes.config.defaults['pool_configs'])
root_volume_group, root_thin_pool = \
qubes.storage.DirectoryThinPool.thin_pool('/')
if root_thin_pool:
lvm_config = {
'name': 'root',
'driver': 'lvm_thin',
'volume_group': root_volume_group,
'thin_pool': root_thin_pool
}
pool_configs[lvm_config['name']] = lvm_config
for name, config in pool_configs.items():
if 'driver' not in config and 'dir_path' in config:
config['driver'] = 'file'