diff options
author | Gerrit Pape <pape@smarden.org> | 2002-01-29 19:01:27 +0000 |
---|---|---|
committer | Gerrit Pape <pape@smarden.org> | 2002-01-29 19:01:27 +0000 |
commit | 5802a33291fa2943ca17acdaafbd61da11cbb440 (patch) | |
tree | 03afaada4eb6cc61dc078f40e7b588982d84558f /etc | |
parent | dcedf7275a10d1be18308501e894735adc87b55f (diff) | |
download | runit-5802a33291fa2943ca17acdaafbd61da11cbb440.tar.gz runit-5802a33291fa2943ca17acdaafbd61da11cbb440.tar.xz runit-5802a33291fa2943ca17acdaafbd61da11cbb440.zip |
trap 2, 3 in stage 1 on *bsd.
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/freebsd/1 | 2 | ||||
-rwxr-xr-x | etc/openbsd/1 | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/etc/freebsd/1 b/etc/freebsd/1 index f6a2180..22428d0 100755 --- a/etc/freebsd/1 +++ b/etc/freebsd/1 @@ -1,5 +1,7 @@ #!/bin/sh # system one time tasks +trap : 2 +trap : 3 /bin/sh /etc/rc autoboot && exit 0 diff --git a/etc/openbsd/1 b/etc/openbsd/1 index 2a8a220..b1bc888 100755 --- a/etc/openbsd/1 +++ b/etc/openbsd/1 @@ -1,5 +1,7 @@ #!/bin/sh # system one time tasks +trap : 2 +trap : 3 /bin/sh /etc/rc autoboot && exit 0 |