Source code for lago.vm

#
# Copyright 2016-2017 Red Hat, 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 2 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
#
# Refer to the README and COPYING files for full details of the license
#

from lago.plugins import vm
from lago import ssh


[docs]class DefaultVM(vm.VMPlugin): pass
[docs]class SSHVMProvider(vm.VMProviderPlugin):
[docs] def start(self, *args, **kwargs): pass
[docs] def stop(self, *args, **kwargs): pass
[docs] def defined(self, *args, **kwargs): return True
[docs] def bootstrap(self, *args, **kwargs): pass
[docs] def state(self, *args, **kwargs): return 'running'
[docs] def running(self, *args, **kwargs): try: ssh.get_ssh_client( ip_addr=self.vm.ip(), host_name=self.vm.name(), propagate_fail=False, ssh_tries=1, ssh_key=self.vm.virt_env.prefix.paths.ssh_id_rsa(), username=self.vm._spec.get('ssh-user'), password=self.vm._spec.get('ssh-password'), ) except ssh.LagoSSHTimeoutException: return False return True
[docs] def create_snapshot(self, name, *args, **kwargs): pass
[docs] def revert_snapshot(self, name, *args, **kwargs): pass