2008-11-03 21:01:01 +05:30
|
|
|
#!@PREFIX@/sbin/runscript
|
2009-05-01 19:41:40 +05:30
|
|
|
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
|
2011-06-30 05:16:31 +05:30
|
|
|
# Released under the 2-clause BSD license.
|
2008-11-03 21:01:01 +05:30
|
|
|
|
2008-11-03 21:46:12 +05:30
|
|
|
description="Kill all processes so we can unmount disks cleanly."
|
|
|
|
|
2008-11-03 21:01:01 +05:30
|
|
|
start()
|
|
|
|
{
|
|
|
|
ebegin "Terminating remaining processes"
|
2011-06-24 08:22:44 +05:30
|
|
|
killall5 -15 ${killall5_opts}
|
2008-11-03 21:01:01 +05:30
|
|
|
sleep 1
|
|
|
|
eend 0
|
2011-01-17 15:19:07 +05:30
|
|
|
ebegin "Killing remaining processes"
|
2011-06-24 08:22:44 +05:30
|
|
|
killall5 -9 ${killall5_opts}
|
2008-11-03 21:01:01 +05:30
|
|
|
sleep 1
|
|
|
|
eend 0
|
|
|
|
}
|