From ff78794a2516b4137017ed5fc047972a45defba8 Mon Sep 17 00:00:00 2001 From: "Francois @fanf42 Armand" Date: Thu, 12 Jul 2018 10:53:20 +0200 Subject: [PATCH] Fixes #12945: Allows to specify ram for a given machine in plateform declaration --- rtf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rtf b/rtf index 4ec59c4..c75e366 100755 --- a/rtf +++ b/rtf @@ -265,6 +265,9 @@ def host_lines(platform, hosts, pf_id): line += ", windows_plugin:true" if 'server' in host['rudder-setup'] and dsc_support: line += ", dsc_plugin:true" + # ram param + if 'ram' in host: + line += ", ram:"+ str(host['ram']) line += ")\n" lines.append(line) return lines