From 4501a443735a9948276db4aeb6752226a37770c7 Mon Sep 17 00:00:00 2001 From: Guido Trotter <ultrotter@google.com> Date: Thu, 28 May 2009 11:05:22 +0100 Subject: [PATCH] UploadFile: allow ancillary files Currently UploadFile is restricted to a static set of files, and thus gnt-cluster redist-conf (silently) fails to upload all config files. With this patch we add the new static files we distribute, and all hypervisor-provided ancillary files. Signed-off-by: Guido Trotter <ultrotter@google.com> Reviewed-by: Iustin Pop <iustin@google.com> --- lib/backend.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/backend.py b/lib/backend.py index a01f95673..ef864877c 100644 --- a/lib/backend.py +++ b/lib/backend.py @@ -1463,12 +1463,18 @@ def UploadFile(file_name, data, mode, uid, gid, atime, mtime): file_name) return False - allowed_files = [ + allowed_files = set([ constants.CLUSTER_CONF_FILE, constants.ETC_HOSTS, constants.SSH_KNOWN_HOSTS_FILE, constants.VNC_PASSWORD_FILE, - ] + constants.RAPI_CERT_FILE, + constants.RAPI_USERS_FILE, + ]) + + for hv_name in constants.HYPER_TYPES: + hv_class = hypervisor.GetHypervisor(hv_name) + allowed_files.update(hv_class.GetAncillaryFiles()) if file_name not in allowed_files: logging.error("Filename passed to UploadFile not in allowed" -- GitLab