File: vbladed

package info (click to toggle)
vblade 11-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 144 kB
  • ctags: 141
  • sloc: ansic: 831; makefile: 57; sh: 6
file content (15 lines) | stat: -rwxr-xr-x 397 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh
# run a vblade daemon using a logger process
# 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.
if [ -z "$*" ]
then
    echo "usage: ./vblade <shelf> <slot> <ethn> <device>" >&2
    exit 1
fi

sh -c "`dirname $0`/vblade $* < /dev/null 2>&1 | logger -t vbladed" &