summaryrefslogtreecommitdiffstats
path: root/procd.c
diff options
context:
space:
mode:
authorMichel Stam <m.stam@fugro.nl>2014-10-13 16:14:36 +0200
committerJohn Crispin <blogic@openwrt.org>2014-10-12 13:24:11 +0200
commit3ff99010e61a0299257ffc91467a16d278a7e774 (patch)
tree6c3cc68e3faa034a25bee91e320dabb47c014b41 /procd.c
parent8b27adcf7516fa89ced66c840cfb085f2b6067af (diff)
downloadunitd-3ff99010e61a0299257ffc91467a16d278a7e774.tar
unitd-3ff99010e61a0299257ffc91467a16d278a7e774.zip
Fix ctrl+alt+del support
The previous patch did not catch SIGINT, which is used by the kernel to indicate to the init process that the system should reboot. Signed-off-by: Michel Stam <m.stam@fugro.nl>
Diffstat (limited to 'procd.c')
-rw-r--r--procd.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/procd.c b/procd.c
index f5640c3..8dcd924 100644
--- a/procd.c
+++ b/procd.c
@@ -72,8 +72,5 @@ int main(int argc, char **argv)
uloop_run();
uloop_done();
- if (getpid() == 1)
- procd_shutdown(RB_AUTOBOOT);
-
return 0;
}