trying to fix bizarre permission problems.
authorChris Koeritz <fred@gruntose.com>
Tue, 13 Mar 2018 15:27:00 +0000 (11:27 -0400)
committerChris Koeritz <fred@gruntose.com>
Tue, 13 Mar 2018 15:27:00 +0000 (11:27 -0400)
scripts/site_avenger/shared_site_mgr.sh

index 50ca50da391e4526aa4b830d124a97e33ee5b9cd..02b87172022ce01d583a30237ce890a8ec5f4b2a 100644 (file)
@@ -142,7 +142,7 @@ function fix_site_perms()
   local site_dir="$app_dir/$CHECKOUT_DIR_NAME"
 
   if [ -f "$site_dir/bin/cake" ]; then
-    chmod -R a+rx "$site_dir/bin/cake"
+    sudo chmod -R a+rx "$site_dir/bin/cake"
     test_or_die "Enabling execute bit on cake binary"
   fi
 
@@ -150,14 +150,14 @@ function fix_site_perms()
     mkdir "$site_dir/logs"
     test_or_die "Creating logs directory"
   fi
-  chmod -R g+w "$site_dir/logs"
+  sudo chmod -R g+w "$site_dir/logs"
   test_or_die "Enabling group write on site's Logs directory"
 
   if [ ! -d "$site_dir/tmp" ]; then
     mkdir "$site_dir/tmp"
     test_or_die "Creating tmp directory"
   fi
-  chmod -R g+w "$site_dir/tmp"
+  sudo chmod -R g+w "$site_dir/tmp"
   test_or_die "Enabling group write on site's tmp directory"
 }
 
@@ -374,7 +374,7 @@ function fix_appdir_ownership()
   if [ ! -z "$user_name" -a "$user_name" != "root" ]; then
     echo "Chowning the apps folder to be owned by: $user_name"
 #hmmm: have to hope for now for standard group named after user 
-    chown -R "$user_name:$user_name" "$combo"
+    sudo chown -R "$user_name:$user_name" "$combo"
     test_or_die "Chowning $combo to be owned by $user_name"
   else
     echo "user name failed checks for chowning, was found as '$user_name'"