fs

morpheus filesystem files
git clone git://git.2f30.org/fs
Log | Files | Refs

commit 815b22dbcf70c9d373d550c945c46fa901af1ce4
parent b1d814f4d8308d090c5a0d1eee33d8823f6cd9ea
Author: sin <sin@2f30.org>
Date:   Sat, 15 Mar 2014 18:58:59 +0000

Don't use the builtin kill, rather use ubase's kill

Diffstat:
Mbin/poweroff | 2+-
Mbin/reboot | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/poweroff b/bin/poweroff @@ -1,3 +1,3 @@ #!/bin/sh -kill -SIGUSR1 1 +/bin/kill -s USR1 1 diff --git a/bin/reboot b/bin/reboot @@ -1,3 +1,3 @@ #!/bin/sh -kill -SIGINT 1 +/bin/kill -s INT 1