From 4f3bc9bb2adaefdc63e50e465fc21bcf3d7e254b Mon Sep 17 00:00:00 2001 From: "Manuel Amador (Rudd-O)" Date: Thu, 9 Sep 2010 18:09:32 -0700 Subject: [PATCH] Complementing commit 308a4ef2ca21d11aee1b5c8eb75f1573d702fecc by Chiradeep, put authorized_keys temporarily inside the ISO --- wscript_build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wscript_build b/wscript_build index 1280cb05a12..7065266758a 100644 --- a/wscript_build +++ b/wscript_build @@ -265,7 +265,7 @@ if bld.env.DISTRO not in ["Windows","Mac"]: # systemvm.zip cannot be built on Windows or Mac because system deps do not exist there tgen = bld( rule = iso_up, - source = "patches/systemvm-patch.tgz target/oss/systemvm.zip", + source = "patches/systemvm-patch.tgz target/oss/systemvm.zip patches/systemvm/root/.ssh/authorized_keys", target = 'target/oss/systemvm.iso', name = 'systemvm_iso', rename = lambda x: x.split(sep)[-1].replace('systemvm-',''), @@ -275,7 +275,7 @@ if bld.env.DISTRO not in ["Windows","Mac"]: if buildpremium: tgen = bld( rule = iso_up, - source = "patches/systemvm-patch.tgz target/premium/systemvm.zip", + source = "patches/systemvm-patch.tgz target/premium/systemvm.zip patches/systemvm/root/.ssh/authorized_keys", target = 'target/premium/systemvm.iso', name = 'systemvm-premium_iso', rename = lambda x: x.split(sep)[-1].replace('systemvm-',''),