File: ip-up

package info (click to toggle)
wmweather 2.4.7-3
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye
  • size: 492 kB
  • sloc: ansic: 1,544; sh: 322; makefile: 93
file content (10 lines) | stat: -rw-r--r-- 139 bytes parent folder | download | duplicates (2)
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