Github user remibergsma commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/1421#discussion_r53555783 --- Diff: systemvm/patches/debian/config/opt/cloud/bin/merge.py --- @@ -272,5 +275,10 @@ def setPath(self, path): def __moveFile(self, origPath, path): if not os.path.exists(path): os.makedirs(path) - timestamp = str(int(round(time.time()))) - os.rename(origPath, path + "/" + self.fileName + "." + timestamp) + + zipped_file_name = path + "/" + self.fileName + "." + str(uuid.uuid4()) + ".gz" --- End diff -- The filename becomes quite long in that case. The date is already in the meta data of the file, so one could use `ls -latr` to get it: 
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---