From 160b91706620ce1cb2454079ae93ba50eeb1e548 Mon Sep 17 00:00:00 2001 From: Hannes Mehnert Date: Mon, 1 Jul 2024 09:38:01 +0200 Subject: [PATCH] fix urls for reproducible build setup --- Projects/Reproducible_builds | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Projects/Reproducible_builds b/Projects/Reproducible_builds index 9382ea2..2077300 100644 --- a/Projects/Reproducible_builds +++ b/Projects/Reproducible_builds @@ -50,10 +50,10 @@ There is no configuration needed. Start the `albatross_console` and the `albatro To check that albatross works, get the latest hello world unikernel and run it: ``` -$ wget https://builds.robur.coop/job/hello/build/latest/bin/hello.hvt +$ wget https://builds.robur.coop/job/hello/build/latest/bin/hello-key.hvt $ albatross-client console my-hello-unikernel & # this is sent to the background since it waits and displays the console of the unikernel named "my-hello-unikernel" -$ albatross-client create my-hello-unikernel hello.hvt # this returns once the unikernel image has been transmitted to the albatross daemon -$ albatross-client create --arg='--hello="Hello,\ my\ unikernel" my-hello-unikernel hello.hvt # executes the same unikernel, but passes the boot parameter "--hello" +$ albatross-client create my-hello-unikernel hello-key.hvt # this returns once the unikernel image has been transmitted to the albatross daemon +$ albatross-client create --arg='--hello="Hello,\ my\ unikernel" my-hello-unikernel hello-key.hvt # executes the same unikernel, but passes the boot parameter "--hello" $ fg # back to albatross-client console $ Ctrl-C # kill that process ```