[umount] Drop all mention of removed configuration keys

This commit is contained in:
Adriaan de Groot 2022-01-17 13:37:47 +01:00
parent 4d5ae96db6
commit c587145bdd
3 changed files with 5 additions and 14 deletions

View File

@ -9,6 +9,7 @@ calamares_add_plugin( umount
SOURCES
UmountJob.cpp
SHARED_LIB
EMERGENCY
)
calamares_add_test(

View File

@ -4,20 +4,11 @@
### Umount Module
#
# This module represents the last part of the installation, the unmounting
# of partitions used for the install. It is also the last place where it
# is possible to copy files to the target system.
#
# The "copy log files" functionality is deprecated; use the *preservefiles*
# module instead, which is more flexible.
#
# This module has two deprecated configuration keys:
# srcLog location in the live system where the log is
# destLog location in the target system to copy the log
# of partitions used for the install. After this, there is no regular way
# to modify the target system anymore.
#
---
srcLog: "/bogus/just/do/not/use/this/anymore.txt"
# Setting emergency to true will make it so this module is still run
# when a prior module fails
# emergency: true
emergency: false

View File

@ -6,5 +6,4 @@ $id: https://calamares.io/schemas/umount
additionalProperties: false
type: object
properties:
srcLog: { type: string }
destLog: { type: string }
emergency: { type: boolean }