Compare commits

..

No commits in common. "03ae556b424a27851bfe9ba53f668d723affce73" and "bc73e56ef0699bfa7d63e16a4a80d13491a9c811" have entirely different histories.

View File

@ -18,22 +18,22 @@ configSetupFileWithData()
local full_file_path="$file_path/$file_name"
result=$(runFileOp sed -i "s|DOMAINSUBNAMEHERE|$host_setup|g" "$full_file_path")
result=$(sed -i "s|DOMAINSUBNAMEHERE|$host_setup|g" "$full_file_path")
checkSuccess "Updated DOMAINSUBNAMEHERE with: $host_setup"
result=$(runFileOp sed -i "s|APPADDRESSHERE|$app_address|g" "$full_file_path")
result=$(sed -i "s|APPADDRESSHERE|$app_address|g" "$full_file_path")
checkSuccess "Updated APPADDRESSHERE with: $app_address"
result=$(runFileOp sed -i "s|DOMAINSUBNAME_DATA|$host_setup|g" "$full_file_path")
result=$(sed -i "s|DOMAINSUBNAME_DATA|$host_setup|g" "$full_file_path")
checkSuccess "Updated DOMAINSUBNAME_DATA with: $host_setup"
result=$(runFileOp sed -i "s|TIMEZONE_DATA|$CFG_TIMEZONE|g" "$full_file_path")
result=$(sed -i "s|TIMEZONE_DATA|$CFG_TIMEZONE|g" "$full_file_path")
checkSuccess "Updated TIMEZONE_DATA with: $CFG_TIMEZONE"
result=$(runFileOp sed -i "s|EMAILHERE|$CFG_TRAEFIK_EMAIL|g" "$full_file_path")
result=$(sed -i "s|EMAILHERE|$CFG_TRAEFIK_EMAIL|g" "$full_file_path")
checkSuccess "Updated EMAILHERE with: $CFG_TRAEFIK_EMAIL"
result=$(runFileOp sed -i "s|HOSTIPHERE|$public_ip_v4|g" "$full_file_path")
result=$(sed -i "s|HOSTIPHERE|$public_ip_v4|g" "$full_file_path")
checkSuccess "Updated HOSTIPHERE with: $public_ip_v4"
scanFileForRandomPasswordKeysUsers "$full_file_path"