🗃️ Committing everything that changed 🗃️

rootfs/root/docker/setup/01-system.sh
This commit is contained in:
casjay 2024-10-12 17:41:39 -04:00
parent d1c0197aa4
commit 67ba964106
Signed by untrusted user who does not match committer: jason
GPG Key ID: 1AB309F42A764145

View File

@ -24,10 +24,18 @@ set -o pipefail
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Set env variables # Set env variables
exitCode=0 exitCode=0
update_conf_files="$(find '/etc' -iname '*.pacnew')"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Main script # Main script
if [ -n "$update_conf_files" ]; then
for conf in $update_conf_files; do
name="${conf//.pacnew/}"
mv -f "$conf" "$name"
done
fi
if grep -Rsqi 'DisableSandbox' /etc/pacman.conf*; then
sed -i 's|.*DisableSandbox|DisableSandbox|g' /etc/pacman.conf*
fi
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Set the exit code # Set the exit code
exitCode=$? exitCode=$?