modified umask for apache
authorChris Koeritz <fred@gruntose.com>
Thu, 1 Mar 2018 18:31:48 +0000 (13:31 -0500)
committerChris Koeritz <fred@gruntose.com>
Thu, 1 Mar 2018 18:31:48 +0000 (13:31 -0500)
enables group read/write on files and dirs for apache.
also disabled the bluefish install since no one is using that.

scripts/site_avenger/revamp_cakelampvm.sh

index 397c6764e5d7b0530660151158503ed9a40fbb8b..2ce26bc6fa5805a2a79602f5f529cd964c45a4df 100644 (file)
@@ -131,14 +131,14 @@ fi
 
 # install a better editor app.
 
-sep
+#sep
 
-echo "The script is about to install the bluefish editor and some dependencies.
-If the app is not already installed, then this process takes about one minute
-on a slow home DSL internet connection..."
+#echo "The script is about to install the bluefish editor and some dependencies.
+#If the app is not already installed, then this process takes about one minute
+#on a slow home DSL internet connection..."
 
-apt-get install -y bluefish &> "/tmp/install_bluefish-$(logname).log"
-test_or_continue "installing bluefish editor"
+#apt-get install -y bluefish &> "/tmp/install_bluefish-$(logname).log"
+#test_or_continue "installing bluefish editor"
 
 ##############
 
@@ -330,6 +330,28 @@ pushd ~ &>/dev/null
 sudo -u $(logname) composer config -g repositories.siteavenger composer https://packages.siteavenger.com/
 popd &>/dev/null
 
+##############
+
+# make the apache umask set group permissions automatically, so we stop having weird
+# permission issues on temp dirs.
+
+sep
+
+grep -q "umask" /etc/apache2/envvars
+if [ $? -eq 0 ]; then
+  # already present.
+  echo the umask configuration for apache already appears to be set.
+else
+  echo "
+
+# set umask to enable group read/write on files and directories.
+umask 002
+
+" >> /etc/apache2/envvars
+  restart_apache
+  echo "successfully changed apache umask configuration to enable group read/write"
+fi
+
 ##############
 ##############