82 lines
3.1 KiB
Python
82 lines
3.1 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2012 Cloudbase Solutions Srl
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from cloudbaseinit.metadata import factory as metadata_factory
|
|
from cloudbaseinit.openstack.common import log as logging
|
|
from cloudbaseinit.osutils import factory as osutils_factory
|
|
from cloudbaseinit.plugins import base as plugins_base
|
|
from cloudbaseinit.plugins import factory as plugins_factory
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class InitManager(object):
|
|
_PLUGINS_CONFIG_SECTION = 'Plugins'
|
|
|
|
def _get_plugin_status(self, osutils, plugin_name):
|
|
return osutils.get_config_value(plugin_name,
|
|
self._PLUGINS_CONFIG_SECTION)
|
|
|
|
def _set_plugin_status(self, osutils, plugin_name, status):
|
|
osutils.set_config_value(plugin_name, status,
|
|
self._PLUGINS_CONFIG_SECTION)
|
|
|
|
def _exec_plugin(self, osutils, service, plugin):
|
|
plugin_name = plugin.__class__.__name__
|
|
|
|
status = self._get_plugin_status(osutils, plugin_name)
|
|
if status == plugins_base.PLUGIN_EXECUTION_DONE:
|
|
LOG.debug('Plugin \'%(plugin_name)s\' execution already done, '
|
|
'skipping' % locals())
|
|
else:
|
|
LOG.info('Executing plugin \'%(plugin_name)s\'' %
|
|
locals())
|
|
try:
|
|
(status, reboot_required) = plugin.execute(service)
|
|
self._set_plugin_status(osutils, plugin_name, status)
|
|
return reboot_required
|
|
except Exception, ex:
|
|
LOG.error('plugin \'%(plugin_name)s\' failed '
|
|
'with error \'%(ex)s\'' % locals())
|
|
LOG.exception(ex)
|
|
|
|
def configure_host(self):
|
|
mdsf = metadata_factory.MetadataServiceFactory()
|
|
service = mdsf.get_metadata_service()
|
|
LOG.info('Metadata service loaded: \'%s\'' %
|
|
service.__class__.__name__)
|
|
|
|
osutils = osutils_factory.OSUtilsFactory().get_os_utils()
|
|
osutils.wait_for_boot_completion()
|
|
|
|
plugins = plugins_factory.PluginFactory().load_plugins()
|
|
|
|
reboot_required = False
|
|
try:
|
|
for plugin in plugins:
|
|
if self._exec_plugin(osutils, service, plugin):
|
|
reboot_required = True
|
|
finally:
|
|
service.cleanup()
|
|
|
|
if reboot_required:
|
|
try:
|
|
osutils.reboot()
|
|
except Exception, ex:
|
|
LOG.error('reboot failed with error \'%s\'' % ex)
|
|
else:
|
|
osutils.terminate()
|