From a9e2cea996bc000719e6c67b18efb56e0e699afa Mon Sep 17 00:00:00 2001 From: abejgonzalez Date: Thu, 1 Dec 2022 11:12:01 -0800 Subject: [PATCH] Remove overlay | Echo in command field --- example-workloads/linux-poweroff.json | 3 +-- example-workloads/linux-poweroff/overlay/poweroff.sh | 5 ----- 2 files changed, 1 insertion(+), 7 deletions(-) delete mode 100755 example-workloads/linux-poweroff/overlay/poweroff.sh diff --git a/example-workloads/linux-poweroff.json b/example-workloads/linux-poweroff.json index ba9a9f95..264248c0 100644 --- a/example-workloads/linux-poweroff.json +++ b/example-workloads/linux-poweroff.json @@ -1,6 +1,5 @@ { "name" : "linux-poweroff", "base" : "br-base.json", - "overlay" : "overlay", - "command" : "/poweroff.sh" + "command" : "echo 'Example linux-poweroff workload\nShutting down the system\n'" } diff --git a/example-workloads/linux-poweroff/overlay/poweroff.sh b/example-workloads/linux-poweroff/overlay/poweroff.sh deleted file mode 100755 index 8c0a63e0..00000000 --- a/example-workloads/linux-poweroff/overlay/poweroff.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -echo "Example poweroff workload" -echo "Shutting down the system" -poweroff