2016-03-22 15:28:56 +00:00
|
|
|
#!/gns3/bin/busybox sh
|
2016-03-01 17:38:03 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2016 GNS3 Technologies Inc.
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
#
|
|
|
|
# This script is injected into the container and launch before
|
2016-05-18 09:23:45 +00:00
|
|
|
# the start command of the container
|
2016-03-01 17:38:03 +00:00
|
|
|
#
|
2016-03-22 15:28:56 +00:00
|
|
|
OLD_PATH="$PATH"
|
|
|
|
PATH=/gns3/bin:/tmp/gns3/bin
|
|
|
|
|
|
|
|
# bootstrap busybox commands
|
|
|
|
if [ ! -d /tmp/gns3/bin ]; then
|
2016-06-07 07:26:27 +00:00
|
|
|
busybox mkdir -p /tmp/gns3/bin
|
|
|
|
/gns3/bin/busybox --install -s /tmp/gns3/bin
|
2016-03-22 15:28:56 +00:00
|
|
|
fi
|
2016-03-01 17:38:03 +00:00
|
|
|
|
2016-06-06 10:39:29 +00:00
|
|
|
# Restore file permission and mount volumes
|
2016-06-07 07:27:37 +00:00
|
|
|
echo "$GNS3_VOLUMES" | tr ":" "\n" | while read i
|
2016-06-01 16:16:56 +00:00
|
|
|
do
|
2017-07-02 09:10:25 +00:00
|
|
|
# ensure, that the mount directory exists
|
|
|
|
mkdir -p "$i"
|
|
|
|
|
2016-06-06 10:39:29 +00:00
|
|
|
# Copy original files if destination is empty (first start)
|
2016-06-07 07:27:37 +00:00
|
|
|
[ "$(ls -A "/gns3volumes$i")" ] || cp -a "$i/." "/gns3volumes$i"
|
2016-06-06 10:39:29 +00:00
|
|
|
|
|
|
|
mount --bind "/gns3volumes$i" "$i"
|
2016-06-01 18:13:48 +00:00
|
|
|
if [ -f "$i/.gns3_perms" ]
|
2016-06-01 16:16:56 +00:00
|
|
|
then
|
|
|
|
while IFS=: read PERMS OWNER GROUP FILE
|
|
|
|
do
|
2017-09-21 14:45:17 +00:00
|
|
|
[ -L "$FILE" ] || chmod "$PERMS" "$FILE"
|
|
|
|
chown -h "${OWNER}:${GROUP}" "$FILE"
|
2016-06-01 18:13:48 +00:00
|
|
|
done < "$i/.gns3_perms"
|
2016-06-01 16:16:56 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
|
2016-03-01 17:38:03 +00:00
|
|
|
# /etc/hosts
|
|
|
|
[ -s /etc/hosts ] || cat > /etc/hosts << __EOF__
|
2016-06-07 07:26:27 +00:00
|
|
|
127.0.1.1 $HOSTNAME
|
|
|
|
127.0.0.1 localhost
|
|
|
|
::1 localhost ip6-localhost ip6-loopback
|
|
|
|
fe00::0 ip6-localnet
|
|
|
|
ff00::0 ip6-mcastprefix
|
|
|
|
ff02::1 ip6-allnodes
|
|
|
|
ff02::2 ip6-allrouters
|
2016-03-01 17:38:03 +00:00
|
|
|
__EOF__
|
|
|
|
|
|
|
|
# configure loopback interface
|
|
|
|
ip link set dev lo up
|
|
|
|
|
2016-05-06 17:07:18 +00:00
|
|
|
# Wait for all eth available
|
2016-06-07 07:26:27 +00:00
|
|
|
while true
|
2016-05-06 17:07:18 +00:00
|
|
|
do
|
|
|
|
grep $GNS3_MAX_ETHERNET /proc/net/dev > /dev/null && break
|
|
|
|
sleep 0.5
|
2016-06-07 07:26:27 +00:00
|
|
|
done
|
2016-05-06 17:07:18 +00:00
|
|
|
|
2016-03-30 08:29:10 +00:00
|
|
|
# activate eth interfaces
|
2016-03-01 17:38:03 +00:00
|
|
|
sed -n 's/^ *\(eth[0-9]*\):.*/\1/p' < /proc/net/dev | while read dev; do
|
2016-06-07 07:26:27 +00:00
|
|
|
ip link set dev $dev up
|
2016-03-01 17:38:03 +00:00
|
|
|
done
|
|
|
|
|
2016-03-30 08:29:10 +00:00
|
|
|
# configure network interfaces
|
2016-03-24 16:08:16 +00:00
|
|
|
ifup -a -f
|
2016-03-22 15:28:56 +00:00
|
|
|
|
2016-03-01 17:38:03 +00:00
|
|
|
# continue normal docker startup
|
2016-03-22 15:28:56 +00:00
|
|
|
PATH="$OLD_PATH"
|
2016-03-03 08:12:36 +00:00
|
|
|
exec "$@"
|
2016-05-31 19:08:41 +00:00
|
|
|
|