summaryrefslogtreecommitdiff
blob: 0b4856bc82c7989adae0142a716f64b86af80643 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

main() {
	# We need to properly terminate devfsd to save the permissions
	if [[ -n $(ps --no-heading -C 'devfsd') ]]; then
		ebegin "Stopping devfsd"
		killall -15 devfsd &>/dev/null
		eend $?
	fi
}

main


# vim:ts=4