From de51d0c099643bc94331d623cb135f45686921d9 Mon Sep 17 00:00:00 2001 From: justin9939 Date: Sun, 24 Sep 2023 23:46:42 +0000 Subject: [PATCH 1/2] Added perl to run.yaml, which runs a version of Hello World 'hello.pl' Signed-off-by: justin9939 --- scripts/run.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/run.yaml b/scripts/run.yaml index 9ca517b..c952ef3 100644 --- a/scripts/run.yaml +++ b/scripts/run.yaml @@ -14,3 +14,8 @@ runs: command: /usr/bin/sqlite3 memory: 64 networking: False + - name: perl + rootfs: ../dynamic-apps/lang/perl + command: ./usr/bin/perl hello.pl + memory: 64 + networking: False From 22ff69d6d17bb6e735a7bdd114ff9e8b00ee95b5 Mon Sep 17 00:00:00 2001 From: justin9939 Date: Mon, 25 Sep 2023 00:19:36 +0000 Subject: [PATCH 2/2] Added iputils to run.yaml, which runs ping, tracepath, clockdiff, and arping on 8.8.8.8 Signed-off-by: justin9939 --- scripts/run.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/scripts/run.yaml b/scripts/run.yaml index c952ef3..919933e 100644 --- a/scripts/run.yaml +++ b/scripts/run.yaml @@ -19,3 +19,23 @@ runs: command: ./usr/bin/perl hello.pl memory: 64 networking: False + - name: iputils + rootfs: ../dynamic-apps/iputils + command: /bin/ping 8.8.8.8 + memory: 64 + networking: True + - name: iputils + rootfs: ../dynamic-apps/iputils + command: /bin/tracepath 8.8.8.8 + memory: 64 + networking: True + - name: iputils + rootfs: ../dynamic-apps/iputils + command: /bin/arping 8.8.8.8 + memory: 64 + networking: True + - name: iputils + rootfs: ../dynamic-apps/iputils + command: /bin/clockdiff 8.8.8.8 + memory: 64 + networking: True