mirror of
https://github.com/Kicksecure/security-misc.git
synced 2024-10-01 08:25:45 -04:00
remount-secure: stricter error handling
This commit is contained in:
parent
59a5fea25d
commit
abc3592734
@ -10,11 +10,14 @@
|
||||
|
||||
set -x
|
||||
set -e
|
||||
set -o pipefail
|
||||
set -o nounset
|
||||
|
||||
if [ -f /usr/libexec/helper-scripts/pre.bsh ]; then
|
||||
## pre.bsh would `source` the following folders:
|
||||
## /etc/remount-secure_pre.d/*.conf
|
||||
## /usr/local/etc/remount-secure_pre.d/*.conf
|
||||
# shellcheck disable=SC1091
|
||||
source /usr/libexec/helper-scripts/pre.bsh
|
||||
fi
|
||||
|
||||
@ -37,10 +40,15 @@ fi
|
||||
|
||||
mkdir --parents "/var/run/remount-secure"
|
||||
|
||||
[[ -v noexec ]] || noexec=""
|
||||
[[ -v noexec_maybe ]] || noexec_maybe=""
|
||||
|
||||
if [ "$noexec" = "true" ]; then
|
||||
noexec_maybe=",noexec"
|
||||
fi
|
||||
|
||||
command -v str_replace >/dev/null
|
||||
|
||||
exit_code=0
|
||||
|
||||
mount_output="$(mount)"
|
||||
@ -55,7 +63,7 @@ remount_secure() {
|
||||
## example status_file_full_path:
|
||||
## /var/run/remount-secure/_home
|
||||
|
||||
## LANG=C str_replace is provided by package helper-scripts.
|
||||
## str_replace is provided by package helper-scripts.
|
||||
mount_folder="$(echo "${status_file_name}" | LANG=C str_replace "_" "/")"
|
||||
## example mount_folder:
|
||||
## /home
|
||||
|
Loading…
Reference in New Issue
Block a user