annotate unixSoft/otherbin/distnoted-reaper.sh @ 429:27e8ad5acedf

colors: move some magit and monky colors into customize
author Augie Fackler <raf@durin42.com>
date Mon, 14 Mar 2016 21:43:26 -0400
parents 57876a8a8165
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
417
57876a8a8165 distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff changeset
1 #!/bin/sh
57876a8a8165 distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff changeset
2 #
57876a8a8165 distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff changeset
3 # check for runaway distnoted, kill if necessary
57876a8a8165 distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff changeset
4 #
57876a8a8165 distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff changeset
5 PATH=/bin:/usr/bin
57876a8a8165 distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff changeset
6 export PATH
57876a8a8165 distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff changeset
7
57876a8a8165 distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff changeset
8 ps -reo '%cpu,uid,pid,command' |
57876a8a8165 distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff changeset
9 awk -v UID=$UID '
57876a8a8165 distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff changeset
10 /distnoted agent$/ && $1 > 100.0 && $2 == UID {
57876a8a8165 distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff changeset
11 system("kill -9 " $3)
57876a8a8165 distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff changeset
12 }
57876a8a8165 distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff changeset
13 '