013e7fb9fc
This allows options to be passed to killall5 by the killprocs script. This was added so that certain processes will not be killed during shutdown. x-Gentoo-Bug: 371625 x-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=371625
23 lines
433 B
Plaintext
23 lines
433 B
Plaintext
#!@PREFIX@/sbin/runscript
|
|
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
|
|
|
description="Kill all processes so we can unmount disks cleanly."
|
|
|
|
depend()
|
|
{
|
|
keyword -prefix
|
|
}
|
|
|
|
start()
|
|
{
|
|
ebegin "Terminating remaining processes"
|
|
killall5 -15 ${killall5_opts}
|
|
sleep 1
|
|
eend 0
|
|
ebegin "Killing remaining processes"
|
|
killall5 -9 ${killall5_opts}
|
|
sleep 1
|
|
eend 0
|
|
}
|