added standup as sudo alias
[feisty_meow.git] / scripts / site_avenger / shared_site_mgr.sh
index 02b87172022ce01d583a30237ce890a8ec5f4b2a..952d29aac170bd746f47be9bad3d2f2c5597b195 100644 (file)
@@ -142,23 +142,19 @@ function fix_site_perms()
   local site_dir="$app_dir/$CHECKOUT_DIR_NAME"
 
   if [ -f "$site_dir/bin/cake" ]; then
-    sudo chmod -R a+rx "$site_dir/bin/cake"
+    chmod -R a+rx "$site_dir/bin/cake"
     test_or_die "Enabling execute bit on cake binary"
   fi
 
-  if [ -d "$site_dir/logs" ]; then
-    mkdir "$site_dir/logs"
-    test_or_die "Creating logs directory"
+  if [ -d "$site_dir/logs" ]; then
+    chmod -R g+w "$site_dir/logs"
+    test_or_die "Enabling group write on site's Logs directory"
   fi
-  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"
+  if [ -d "$site_dir/tmp" ]; then
+    chmod -R g+w "$site_dir/tmp"
+    test_or_die "Enabling group write on site's tmp directory"
   fi
-  sudo chmod -R g+w "$site_dir/tmp"
-  test_or_die "Enabling group write on site's tmp directory"
 }
 
 # tosses out any cached object data that originated from the database.
@@ -372,9 +368,9 @@ function fix_appdir_ownership()
   # go with the default user running the script.
   user_name="$USER"
   if [ ! -z "$user_name" -a "$user_name" != "root" ]; then
-    echo "Chowning the apps folder to be owned by: $user_name"
+    echo "Chowning the app folder to be owned by: $user_name"
 #hmmm: have to hope for now for standard group named after user 
-    sudo chown -R "$user_name:$user_name" "$combo"
+    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'"