From 0a865080e621bb0fa228fc6c68b180bf712dd85e Mon Sep 17 00:00:00 2001 From: Guido Trotter Date: Wed, 5 May 2010 16:36:25 +0200 Subject: [PATCH] backend: remove a couple of useless mkdir calls Those directories must exist for the node daemon to run (it's in the node daemon's list of ensured directories) and those functions are only called by the node daemon, so there's no point in those checks+mkdir calls. Signed-off-by: Guido Trotter Reviewed-by: Balazs Lecz --- lib/backend.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/backend.py b/lib/backend.py index 761628c..81f82bc 100644 --- a/lib/backend.py +++ b/lib/backend.py @@ -2030,8 +2030,6 @@ def ExportSnapshot(disk, dest_node, instance, cluster_name, idx, debug): export_script = inst_os.export_script logfile = _InstanceLogName("export", inst_os.name, instance.name) - if not os.path.exists(constants.LOG_OS_DIR): - os.mkdir(constants.LOG_OS_DIR, 0750) real_disk = _OpenRealBD(disk) @@ -2184,8 +2182,6 @@ def ImportOSIntoInstance(instance, src_node, src_images, cluster_name, debug): import_script = inst_os.import_script logfile = _InstanceLogName("import", instance.os, instance.name) - if not os.path.exists(constants.LOG_OS_DIR): - os.mkdir(constants.LOG_OS_DIR, 0750) comprcmd = "gunzip" impcmd = utils.BuildShellCmd("(cd %s; %s >%s 2>&1)", inst_os.path, -- 1.7.10.4