File: 03_vblade_usage.patch

package info (click to toggle)
vblade 20-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 204 kB
  • ctags: 256
  • sloc: ansic: 1,239; makefile: 71; sh: 1
file content (21 lines) | stat: -rw-r--r-- 710 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
03_vblade_usage.patch: Used for avoiding calling vbladed without arguments,
			and while at it, add the usage command line.
Index: vblade-20/vbladed
===================================================================
--- vblade-20.orig/vbladed
+++ vblade-20/vbladed
@@ -3,4 +3,14 @@
 # output is directed to syslogd
 #
 
+# Although logging goes to syslog, let's going to
+# protect ourselves against the most common way or
+# calling vbladed: without arguments.  While at it, we guard
+# ourselves against wrong number of parameters.
+if [ $# -lt 4 ]
+then
+    echo "usage: ./vblade <shelf> <slot> <ethn> <device>" >&2
+    exit 1
+fi
+
 sh -c "`dirname $0`/vblade $* < /dev/null 2>&1 | logger -t vbladed" &