blob: 15dd4bb76f82f0b3ae383cb634eaf840c6105e4a [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#!/bin/sh
Patrick Williams45852732022-04-02 08:58:32 -05002#
3# SPDX-License-Identifier: GPL-2.0-only
4#
5
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006### BEGIN INIT INFO
7# Provides: sendsigs
8# Required-Start:
9# Required-Stop: umountnfs
10# Default-Start:
11# Default-Stop: 0 6
12# Short-Description: Kill all remaining processes.
13# Description:
14### END INIT INFO
15
16PATH=/sbin:/bin:/usr/sbin:/usr/bin
17
18# Kill all processes.
19echo "Sending all processes the TERM signal..."
20killall5 -15
21sleep 5
22echo "Sending all processes the KILL signal..."
23killall5 -9
24
25: exit 0