aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-02-07 16:04:19 -0200
committerSilvio Rhatto <rhatto@riseup.net>2017-02-07 16:04:19 -0200
commitdae331b1e64dfd4eccfcdb4acc45d62832d0fc7a (patch)
tree341c1c571e56f88480ea15873812e70d4209f5f9
parentee620df1b27af94d92a26cf498df02a36225b113 (diff)
downloadpuppet-drupal-dae331b1e64dfd4eccfcdb4acc45d62832d0fc7a.tar.gz
puppet-drupal-dae331b1e64dfd4eccfcdb4acc45d62832d0fc7a.tar.bz2
Do not change ownership during drupal_iterate
-rwxr-xr-xfiles/drupal16
1 files changed, 8 insertions, 8 deletions
diff --git a/files/drupal b/files/drupal
index f166015..9783e23 100755
--- a/files/drupal
+++ b/files/drupal
@@ -104,14 +104,14 @@ function drupal_iterate {
done
# Fix permissions
- chown -R drupal.drupal $base/modules
- chown -R drupal.drupal $base/themes
- if [ -e "$base/sites/all/modules" ]; then
- chown -R drupal.drupal $base/sites/all/modules
- fi
- if [ -e "$base/sites/all/themes" ]; then
- chown -R drupal.drupal $base/sites/all/themes
- fi
+ #chown -R drupal.drupal $base/modules
+ #chown -R drupal.drupal $base/themes
+ #if [ -e "$base/sites/all/modules" ]; then
+ # chown -R drupal.drupal $base/sites/all/modules
+ #fi
+ #if [ -e "$base/sites/all/themes" ]; then
+ # chown -R drupal.drupal $base/sites/all/themes
+ #fi
done
}