V8.13.416.2025.11.17
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m21s

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-11-17 19:33:32 +00:00
parent 36d0888107
commit f6d830a287
2 changed files with 5 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ declare var_dm="" var_unit_dir="" var_link="/etc/systemd/system/default.target"
### Remove CDLB artifacts ------------------------------------------------------------------------------------------------------
rm -f /root/ciss_xdg_tmp.sh
rm -fr /root/build
find / -xdev \( -path /proc -o -path /sys -o -path /dev -o -path /run \) -prune -o -type f -name '.keep' -exec rm -f -- {} +
find /.ciss /etc /home /root /usr /var -type f -name '.keep' -print -delete
### Securing '/.ciss' ----------------------------------------------------------------------------------------------------------
find /.ciss -type d -exec chmod 0700 {} +

View File

@@ -35,11 +35,11 @@ shopt -u extglob # If set, enable the extended pattern matching features
shopt -u nullglob # If set, filename expansion patterns that match no files expand to nothing and are removed.
### Deterministic environment
declare -gx LC_ALL=C.UTF-8
declare -gx LANG=C.UTF-8
declare -gx TZ=UTC
declare -gx PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
declare -gx IFS=$' \t\n'
declare -gx LANG=C.UTF-8
declare -gx LC_ALL=C.UTF-8
declare -gx PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
declare -gx TZ=UTC
umask 0022