Skip to content

Commit 47c25cd

Browse files
committed
Fix typo in variable name
1 parent 1066373 commit 47c25cd

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

drupal_fix_permissions.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ printf "Script to fix permissions in a Drupal installation"
310310

311311
# Default values.
312312
DEFAULT_DRUPAL_PATH=.
313-
DEFAULT_HTTPD_GROPUP="www-data"
313+
DEFAULT_HTTPD_GROUP="www-data"
314314

315315
# Initialize some values.
316316
group_executable_mode=x
@@ -368,8 +368,8 @@ fi
368368

369369
if [ -z $httpd_group ]
370370
then
371-
httpd_group=$DEFAULT_HTTPD_GROPUP
372-
printf "\nUsing default HTTPD group '$DEFAULT_HTTPD_GROPUP'"
371+
httpd_group=$DEFAULT_HTTPD_GROUP
372+
printf "\nUsing default HTTPD group '$DEFAULT_HTTPD_GROUP'"
373373
fi
374374

375375

@@ -481,4 +481,3 @@ echo "$additional_files_paths"| while read path; do
481481
done
482482

483483
printf "\n\nPermissions and ownership fixed!\n"
484-

0 commit comments

Comments
 (0)