Package: bosh / 0.6-4

fix-path-in-example-bops.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: Do not use absolute path to /usr/sbin/lsof in
 example bops (it is under /usr/bin/lsof on Debian).
Forwarded: yes
Author: Salvatore Bonaccorso <salvatore.bonaccorso@gmail.com>
--- a/configs/bops
+++ b/configs/bops
@@ -25,7 +25,7 @@
 9=[!]		kill -9 $PID
 s=[!:signal]	kill -s "$BOSHPARAM" $PID
 
-l=[.]		/usr/sbin/lsof -p $PID
+l=[.]		lsof -p $PID
 r=[.]		chrt -p $PID
 m=[.]		pmap $PID
 t=[.]		pstack $PID