summarylogtreecommitdiffstats
path: root/chown_fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'chown_fix.patch')
-rw-r--r--chown_fix.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/chown_fix.patch b/chown_fix.patch
new file mode 100644
index 000000000000..0bb7ea2a1007
--- /dev/null
+++ b/chown_fix.patch
@@ -0,0 +1,16 @@
+--- install.sh 2013-11-27 14:49:25.474802021 -0400
++++ install.sh.new 2015-03-10 21:28:10.505393378 -0400
+@@ -2078,11 +2078,12 @@
+
+ # --- Set ownership or remove OpenNebula directories ---
+
+ if [ "$UNINSTALL" = "no" ] ; then
+ for d in $CHOWN_DIRS; do
+- chown -R $ONEADMIN_USER:$ONEADMIN_GROUP $DESTDIR$d
++ :
++# chown -R $ONEADMIN_USER:$ONEADMIN_GROUP $DESTDIR$d
+ done
+ else
+ for d in `echo $DELETE_DIRS | awk '{for (i=NF;i>=1;i--) printf $i" "}'`; do
+ rmdir $d
+ done