
Originally Posted by
bragon
thx for the --make-pidfile option: I will add this and make a new minor release soon
Bragon
btw, there is a small bug in at the end of the MKPG Installer. AM is not restarting because of a variable name mismatch. And I think this is the major improviment in your new Mkpg installer.
typed $smbdpids instead of $ampids
Code:
#original code
ampids=`pidof am`
[ -n "$smbdpids" ] && start-stop-daemon --start --quiet -c root --exec /bin/kill -- -TERM $ampids
i think you can replace with this more simple code:
Code:
start-stop-daemon --stop -c root --name am
This way we get ride of the most annoyng "feature" of the installer: the need to reboot the phone. I think this was your intent.
I see now that the R532 version doesn't have this code. Is there a reason for this?