From ed5e96d9bc4c4be3e57b33ab77ae4b09f4f4eb6f Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Tue, 13 Mar 2018 11:33:57 -0400 Subject: [PATCH] dropping extra sudo something is screwy in standup, but adding extra sudos is not helping. --- scripts/site_avenger/shared_site_mgr.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/site_avenger/shared_site_mgr.sh b/scripts/site_avenger/shared_site_mgr.sh index 02b87172..50ca50da 100644 --- a/scripts/site_avenger/shared_site_mgr.sh +++ b/scripts/site_avenger/shared_site_mgr.sh @@ -142,7 +142,7 @@ 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 @@ -150,14 +150,14 @@ function fix_site_perms() mkdir "$site_dir/logs" test_or_die "Creating logs directory" fi - sudo chmod -R g+w "$site_dir/logs" + 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 - sudo chmod -R g+w "$site_dir/tmp" + 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 - 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'" -- 2.34.1