3510686207
Fixed 5 additional piped command assignments that could produce empty values if any command in the pipeline fails with set -eo pipefail: - Line 134: all_domains from grep | cut | tr - Added || echo "" - Line 402: db_prefix from sed | cut - Added || echo "" - Line 689: home_dir from grep | cut - Added || echo "" - Line 729: primary_domain from grep | cut - Added || echo "" - Line 730: home_dir from grep | cut - Added || echo "" - Line 731: disk_used from grep | cut - Added || echo "0" These changes ensure consistent error handling for all piped commands with set -eo pipefail enabled, preventing silent failures and data loss.