summaryrefslogtreecommitdiff
path: root/scripts/init-top/test
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/init-top/test')
-rw-r--r--scripts/init-top/test18
1 files changed, 18 insertions, 0 deletions
diff --git a/scripts/init-top/test b/scripts/init-top/test
new file mode 100644
index 0000000..e4d59fb
--- /dev/null
+++ b/scripts/init-top/test
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+PREREQ=""
+
+prereqs()
+{
+ echo "$PREREQ"
+}
+
+case $1 in
+# get pre-requisites
+prereqs)
+ prereqs
+ exit 0
+ ;;
+esac
+
+echo "Got here!"