This commit is contained in:
Patrick Schleizer 2023-10-22 11:11:10 -04:00
parent 26826e8398
commit f1da0ce746
No known key found for this signature in database
GPG Key ID: CB8D50BB77BB3C48

View File

@ -24,14 +24,14 @@ init() {
$output_command "ERROR: must be run as root! sudo $0"
exit 1
fi
$output_command "START"
mkdir --parents "/run/remount-secure"
exit_code=0
mount_output="$(mount)"
## Debugging.
$output_command "INFO: mount_output:"
$output_command "$mount_output"
$output_command "INFO: 'findmnt --list' output at the START."
$output_command "$(findmnt --list)"
$output_command ""
}
@ -153,6 +153,9 @@ _home() {
}
end() {
## Debugging.
$output_command "INFO: 'findmnt --list' output at the END."
$output_command "$(findmnt --list)"
exit $exit_code
}