Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > a83af0f980d58e642876abc7972e5e2c > files > 18

halevt-0.1.6.2-4.fc15.i686.rpm

#! /bin/sh

tmpfile=$1
device=$2

if [ z"$device" = 'z' ]; then
  echo 'No device' > "$tmpfile"
  exit 1
fi

message=`halevt-umount -d "$device" 2>&1`
status=$?

if [ z"$status" = z0 ]; then
  echo 'Completed' > "$tmpfile"
  exit 0
fi

echo "$message" > "$tmpfile"
exit 1