1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-04-02 10:50:07 +03:00

Use cp -RL in instal.sh

This commit is contained in:
Daniel Molina 2015-07-21 18:21:18 +02:00
parent ec16d8dafe
commit 56c1ed40d4

View File

@ -1908,7 +1908,7 @@ do_file() {
if [ "$LINK" = "yes" ]; then
ln -s $SRC_DIR/$1 $DESTDIR$2
else
cp -R $SRC_DIR/$1 $DESTDIR$2
cp -RL $SRC_DIR/$1 $DESTDIR$2
fi
fi
}