3e120de02a
This avoids misleading exceptions in the logs.
37 lines
1.4 KiB
Python
37 lines
1.4 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.osutils import factory as osutils_factory
|
|
from cloudbaseinit.plugins import base
|
|
from cloudbaseinit.openstack.common import log as logging
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class SetHostNamePlugin(base.BasePlugin):
|
|
def execute(self, service):
|
|
meta_data = service.get_meta_data('openstack')
|
|
if 'hostname' not in meta_data:
|
|
LOG.debug('Hostname not found in metadata')
|
|
return (base.PLUGIN_EXECUTION_DONE, False)
|
|
|
|
osutils = osutils_factory.OSUtilsFactory().get_os_utils()
|
|
|
|
new_host_name = meta_data['hostname'].split('.', 1)[0]
|
|
reboot_required = osutils.set_host_name(new_host_name)
|
|
|
|
return (base.PLUGIN_EXECUTION_DONE, reboot_required)
|