[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 SOURCES
UmountJob.cpp UmountJob.cpp
SHARED_LIB SHARED_LIB
EMERGENCY
) )
calamares_add_test( calamares_add_test(

View File

@ -4,20 +4,11 @@
### Umount Module ### Umount Module
# #
# This module represents the last part of the installation, the unmounting # 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 # of partitions used for the install. After this, there is no regular way
# is possible to copy files to the target system. # to modify the target system anymore.
#
# 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
# #
--- ---
srcLog: "/bogus/just/do/not/use/this/anymore.txt"
# Setting emergency to true will make it so this module is still run # Setting emergency to true will make it so this module is still run
# when a prior module fails # when a prior module fails
# emergency: true emergency: false

View File

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