mirror of
https://github.com/Kicksecure/security-misc.git
synced 2025-01-14 03:59:30 -05:00
fix
This commit is contained in:
parent
a423b85f81
commit
26826e8398
@ -96,7 +96,7 @@ remount_secure() {
|
|||||||
## When this package is upgraded, the systemd unit will run again.
|
## When this package is upgraded, the systemd unit will run again.
|
||||||
## If the user meanwhile manually relaxed mount options, this should not be undone.
|
## If the user meanwhile manually relaxed mount options, this should not be undone.
|
||||||
|
|
||||||
if [ "$option_force" == "true" ]; then
|
if [ ! "$option_force" == "true" ]; then
|
||||||
if [ -e "$status_file_full_path" ]; then
|
if [ -e "$status_file_full_path" ]; then
|
||||||
$output_command "INFO: '$mount_folder' already remounted earlier. Not remounting again. Use --force if this is what you want."
|
$output_command "INFO: '$mount_folder' already remounted earlier. Not remounting again. Use --force if this is what you want."
|
||||||
return 0
|
return 0
|
||||||
@ -113,8 +113,8 @@ remount_secure() {
|
|||||||
mount --options "$intended_mount_options" --bind "$mount_folder" "$mount_folder" || exit_code=101
|
mount --options "$intended_mount_options" --bind "$mount_folder" "$mount_folder" || exit_code=101
|
||||||
fi
|
fi
|
||||||
|
|
||||||
new_mount_options="$(findmnt --noheadings --output options -- "$mount_folder")" || true
|
new_mount_options="$(findmnt --noheadings "$mount_folder")" || true
|
||||||
$output_command "INFO: '$mount_folder' new_mount_options: '$new_mount_options'"
|
$output_command "INFO: $new_mount_options"
|
||||||
|
|
||||||
touch "$status_file_full_path"
|
touch "$status_file_full_path"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user