File: ciped-wrapper

package info (click to toggle)
cipe 1.5.4free-9
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 908 kB
  • ctags: 730
  • sloc: ansic: 5,976; sh: 358; makefile: 315; asm: 200; perl: 45
file content (9 lines) | stat: -rw-r--r-- 189 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e
REAL="/usr/sbin/ciped-`uname -r`"
if [ -x "$REAL" ]; then
    exec "$REAL" "$@"
else
    echo "ciped-wrapper: Cannot find binary for kernel `uname -r`." 1>&2
    exit 1
fi