Files
neutrino/data/control/flash.start
2019-02-11 10:26:06 +01:00

18 lines
269 B
Bash
Executable File

#!/bin/sh
if pidof vsftpd > /dev/null; then
echo "Kill vsftpd"
killall vsftpd
fi
if pidof ushare > /dev/null; then
echo "Kill ushare"
trap "" INT
kill -INT `pidof ushare`
fi
if [ -e /var/etc/.djmount ]; then
echo "Kill djmount"
fusermount -u /media/00upnp
fi