X-Git-Url: https://code.grnet.gr/git/ganeti-local/blobdiff_plain/6613661ab68003b6a99a4e361733354f18d6f3eb..c6e1a3eef05674d637570c39f25a799cec7ba187:/lib/backend.py diff --git a/lib/backend.py b/lib/backend.py index 7728bb4..84a39d0 100644 --- a/lib/backend.py +++ b/lib/backend.py @@ -296,7 +296,7 @@ def StartMaster(start_daemons, no_voting): if family == netutils.IP6Address.family: ipcls = netutils.IP6Address - result = utils.RunCmd(["ip", "address", "add", + result = utils.RunCmd([constants.IP_COMMAND_PATH, "address", "add", "%s/%d" % (master_ip, ipcls.iplen), "dev", master_netdev, "label", "%s:0" % master_netdev]) @@ -343,7 +343,7 @@ def StopMaster(stop_daemons): if family == netutils.IP6Address.family: ipcls = netutils.IP6Address - result = utils.RunCmd(["ip", "address", "del", + result = utils.RunCmd([constants.IP_COMMAND_PATH, "address", "del", "%s/%d" % (master_ip, ipcls.iplen), "dev", master_netdev]) if result.failed: @@ -730,7 +730,7 @@ def GetVolumeList(vg_names): # we don't want to report such volumes as existing, since they # don't really hold data continue - lvs[vg_name+"/"+name] = (size, inactive, online) + lvs[vg_name + "/" + name] = (size, inactive, online) return lvs @@ -925,7 +925,7 @@ def GetAllInstancesInfo(hypervisor_list): return output -def _InstanceLogName(kind, os_name, instance): +def _InstanceLogName(kind, os_name, instance, component): """Compute the OS log filename for a given instance and operation. The instance name and os name are passed in as strings since not all @@ -937,11 +937,19 @@ def _InstanceLogName(kind, os_name, instance): @param os_name: the os name @type instance: string @param instance: the name of the instance being imported/added/etc. + @type component: string or None + @param component: the name of the component of the instance being + transferred """ # TODO: Use tempfile.mkstemp to create unique filename - base = ("%s-%s-%s-%s.log" % - (kind, os_name, instance, utils.TimestampForFilename())) + if component: + assert "/" not in component + c_msg = "-%s" % component + else: + c_msg = "" + base = ("%s-%s-%s%s-%s.log" % + (kind, os_name, instance, c_msg, utils.TimestampForFilename())) return utils.PathJoin(constants.LOG_OS_DIR, base) @@ -963,7 +971,7 @@ def InstanceOsAdd(instance, reinstall, debug): if reinstall: create_env["INSTANCE_REINSTALL"] = "1" - logfile = _InstanceLogName("add", instance.os, instance.name) + logfile = _InstanceLogName("add", instance.os, instance.name, None) result = utils.RunCmd([inst_os.create_script], env=create_env, cwd=inst_os.path, output=logfile, reset_env=True) @@ -996,7 +1004,7 @@ def RunRenameInstance(instance, old_name, debug): rename_env["OLD_INSTANCE_NAME"] = old_name logfile = _InstanceLogName("rename", instance.os, - "%s-%s" % (old_name, instance.name)) + "%s-%s" % (old_name, instance.name), None) result = utils.RunCmd([inst_os.rename_script], env=rename_env, cwd=inst_os.path, output=logfile, reset_env=True) @@ -2351,7 +2359,7 @@ def FinalizeExport(instance, snap_disks): config.set(constants.INISECT_INS, "nic%d_%s" % (nic_count, param), "%s" % nic.nicparams.get(param, None)) # TODO: redundant: on load can read nics until it doesn't exist - config.set(constants.INISECT_INS, "nic_count" , "%d" % nic_total) + config.set(constants.INISECT_INS, "nic_count", "%d" % nic_total) disk_total = 0 for disk_count, disk in enumerate(snap_disks): @@ -2364,7 +2372,7 @@ def FinalizeExport(instance, snap_disks): config.set(constants.INISECT_INS, "disk%d_size" % disk_count, ("%d" % disk.size)) - config.set(constants.INISECT_INS, "disk_count" , "%d" % disk_total) + config.set(constants.INISECT_INS, "disk_count", "%d" % disk_total) # New-style hypervisor/backend parameters @@ -3077,7 +3085,7 @@ def StartImportExportDaemon(mode, opts, host, port, instance, component, # Overall timeout for establishing connection while listening cmd.append("--connect-timeout=%s" % opts.connect_timeout) - logfile = _InstanceLogName(prefix, instance.os, instance.name) + logfile = _InstanceLogName(prefix, instance.os, instance.name, component) # TODO: Once _InstanceLogName uses tempfile.mkstemp, StartDaemon has # support for receiving a file descriptor for output @@ -3370,7 +3378,6 @@ class HooksRunner(object): else: _Fail("Unknown hooks phase '%s'", phase) - subdir = "%s-%s.d" % (hpath, suffix) dir_name = utils.PathJoin(self._BASE_DIR, subdir)