~ubuntu-branches/ubuntu/raring/fnfx/raring

1
2
3
4
5
6
7
8
9
#!/bin/bash
#DEBHELPER#
if [ -x "/etc/init.d/fnfxd" ]; then
	if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
		invoke-rc.d fnfxd stop || true
	else
		/etc/init.d/fnfxd stop || true
	fi
fi