2013-10-30 21:58:17 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright (C) 2013 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/>.
|
|
|
|
|
2014-03-16 03:41:04 +00:00
|
|
|
import sys
|
2013-12-05 07:21:06 +00:00
|
|
|
from .base import IModule
|
2014-09-29 23:24:52 +00:00
|
|
|
from .deadman import DeadMan
|
2014-03-16 03:41:04 +00:00
|
|
|
from .dynamips import Dynamips
|
2014-09-29 23:24:52 +00:00
|
|
|
from .qemu import Qemu
|
2014-05-13 21:00:35 +00:00
|
|
|
from .vpcs import VPCS
|
2014-07-12 19:18:25 +00:00
|
|
|
from .virtualbox import VirtualBox
|
2014-03-16 03:41:04 +00:00
|
|
|
|
2014-09-29 23:24:52 +00:00
|
|
|
MODULES = [DeadMan, Dynamips, VPCS, VirtualBox, Qemu]
|
2014-03-16 03:41:04 +00:00
|
|
|
|
|
|
|
if sys.platform.startswith("linux"):
|
|
|
|
# IOU runs only on Linux
|
2014-03-30 22:25:56 +00:00
|
|
|
from .iou import IOU
|
2014-03-16 03:41:04 +00:00
|
|
|
MODULES.append(IOU)
|