X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fsystem%2Fadd_apache_site.sh;h=b341c9c2e4f0ea34b0bacc26b10c725a8e747fe8;hb=fc51448ac8c18804d3cfc1997af3eaca5fad4c2e;hp=909604bbe118b65adc2e590da8c5a1933e52b29e;hpb=328a5c53f1329b16ad86f7bcdd8de3d843637419;p=feisty_meow.git diff --git a/scripts/system/add_apache_site.sh b/scripts/system/add_apache_site.sh index 909604bb..b341c9c2 100644 --- a/scripts/system/add_apache_site.sh +++ b/scripts/system/add_apache_site.sh @@ -96,7 +96,7 @@ function maybe_create_site_storage() local full_path="$BASE_PATH/$our_app" if [ ! -d "$full_path" ]; then mkdir -p $full_path - check_result "The app storage path could not be created.\n Path in question is: $full_path" + test_or_fail "The app storage path could not be created.\n Path in question is: $full_path" fi # now give the web server some access to the folder. this is crucial since the folders @@ -108,10 +108,10 @@ function maybe_create_site_storage() while [[ $chow_path != $HOME ]]; do echo chow path is now $chow_path chmod g+rx "$chow_path" - check_result "Failed to add group permissions on the path: $chow_path" + test_or_fail "Failed to add group permissions on the path: $chow_path" # reassert the user's ownership of any directories we might have just created. chown $(logname) "$chow_path" - check_result "changing ownership to user failed on the path: $chow_path" + test_or_fail "changing ownership to user failed on the path: $chow_path" chow_path="$(dirname "$chow_path")" done }