1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 17:28:08 +00:00

Revert "Integrate fixes from @ehlers"

This reverts commit 775ee4259e.
This commit is contained in:
Julien Duponchelle 2016-06-07 09:26:27 +02:00
parent 775ee4259e
commit c829a250a9
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -29,10 +29,15 @@ if [ ! -d /tmp/gns3/bin ]; then
fi
# Restore file permission and mount volumes
echo "$GNS3_VOLUMES" | tr ":" "\n" | while read i
for i in $(echo "$GNS3_VOLUMES" | tr ":" "\n")
do
# Copy original files if destination is empty (first start)
[ "$(ls -A "/gns3volumes$i")" ] || cp -a "$i/." "/gns3volumes$i"
if ! [ "$(ls -A /gns3volumes$i)" ]; then
for file in $(ls -A "$i")
do
cp -a "$i/$file" "/gns3volumes$i/$file"
done
fi
mount --bind "/gns3volumes$i" "$i"
if [ -f "$i/.gns3_perms" ]