diff options
| author | Calvin <calvinm@kissingerassoc.com> | 2026-08-16 20:52:12 -0400 |
|---|---|---|
| committer | Calvin <calvinm@kissingerassoc.com> | 2026-08-16 20:52:12 -0400 |
| commit | 147b0ca1e4e00f66abb47fff3c543b853033f609 (patch) | |
| tree | a388172fc16723c139deff1e45a74c3d1c567cc0 /svc/test | |
Initial commit: svc supervisor, design docs, session transcript
Existing work moved from /storage/vms/9front/svc, previously unversioned.
Object files and linked binaries excluded via .gitignore.
Diffstat (limited to 'svc/test')
| -rw-r--r-- | svc/test/svc/after | 5 | ||||
| -rw-r--r-- | svc/test/svc/afterboth | 6 | ||||
| -rw-r--r-- | svc/test/svc/badoneshot | 6 | ||||
| -rw-r--r-- | svc/test/svc/cyclea | 5 | ||||
| -rw-r--r-- | svc/test/svc/cycleb | 5 | ||||
| -rw-r--r-- | svc/test/svc/missingdep | 5 | ||||
| -rw-r--r-- | svc/test/svc/ramdisk | 6 | ||||
| -rw-r--r-- | svc/test/svc/setup | 6 |
8 files changed, 44 insertions, 0 deletions
diff --git a/svc/test/svc/after b/svc/test/svc/after new file mode 100644 index 0000000..bd0ef9d --- /dev/null +++ b/svc/test/svc/after @@ -0,0 +1,5 @@ +svc=after + exec=/bin/sleep + args=3600 + needs=ramdisk + enable=yes diff --git a/svc/test/svc/afterboth b/svc/test/svc/afterboth new file mode 100644 index 0000000..d154f6d --- /dev/null +++ b/svc/test/svc/afterboth @@ -0,0 +1,6 @@ +svc=afterboth + exec=/bin/sleep + args=3600 + needs=ramdisk + needs=setup + enable=yes diff --git a/svc/test/svc/badoneshot b/svc/test/svc/badoneshot new file mode 100644 index 0000000..d362ba3 --- /dev/null +++ b/svc/test/svc/badoneshot @@ -0,0 +1,6 @@ +svc=badoneshot + exec=/bin/echo + args=x + ready=exit + restart=always + enable=yes diff --git a/svc/test/svc/cyclea b/svc/test/svc/cyclea new file mode 100644 index 0000000..40b3bcb --- /dev/null +++ b/svc/test/svc/cyclea @@ -0,0 +1,5 @@ +svc=cyclea + exec=/bin/sleep + args=1 + needs=cycleb + enable=yes diff --git a/svc/test/svc/cycleb b/svc/test/svc/cycleb new file mode 100644 index 0000000..157a1dc --- /dev/null +++ b/svc/test/svc/cycleb @@ -0,0 +1,5 @@ +svc=cycleb + exec=/bin/sleep + args=1 + needs=cyclea + enable=yes diff --git a/svc/test/svc/missingdep b/svc/test/svc/missingdep new file mode 100644 index 0000000..d75e292 --- /dev/null +++ b/svc/test/svc/missingdep @@ -0,0 +1,5 @@ +svc=missingdep + exec=/bin/sleep + args=1 + needs=nosuchthing + enable=yes diff --git a/svc/test/svc/ramdisk b/svc/test/svc/ramdisk new file mode 100644 index 0000000..49d177c --- /dev/null +++ b/svc/test/svc/ramdisk @@ -0,0 +1,6 @@ +svc=ramdisk + exec=/bin/ramfs + args=-s + ready=srv:ramfs + restart=always + enable=yes diff --git a/svc/test/svc/setup b/svc/test/svc/setup new file mode 100644 index 0000000..f9202fb --- /dev/null +++ b/svc/test/svc/setup @@ -0,0 +1,6 @@ +svc=setup + exec=/bin/echo + args=setup-done + ready=exit + restart=never + enable=yes |
