X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fsystem%2Fadd_apache_site.sh;h=6b0956347d17406dc8ddc28e19354e89f1d6cea1;hb=170a8e062d9283e65716e7aa55930ade13a66f7a;hp=b341c9c2e4f0ea34b0bacc26b10c725a8e747fe8;hpb=7b89ef73b80a77a4ebf1109c47a381249bae6bdc;p=feisty_meow.git diff --git a/scripts/system/add_apache_site.sh b/scripts/system/add_apache_site.sh index b341c9c2..6b095634 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 - test_or_fail "The app storage path could not be created.\n Path in question is: $full_path" + test_or_die "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" - test_or_fail "Failed to add group permissions on the path: $chow_path" + test_or_die "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" - test_or_fail "changing ownership to user failed on the path: $chow_path" + test_or_die "changing ownership to user failed on the path: $chow_path" chow_path="$(dirname "$chow_path")" done }