File: ip-up

package info (click to toggle)
wmweather 2.4.8-3
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 604 kB
  • sloc: sh: 3,477; ansic: 1,552; makefile: 42
file content (10 lines) | stat: -rw-r--r-- 140 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
#
# Let wmweather grab the latest weather report.

if pidlist="$(pidof wmweather wmWeather)"
then
	kill -ALRM $pidlist
fi

exit 0