#!/bin/sh
#
# Start qiba-update-client in single run mode
# Reason: go present os/exec memory leak so we should not keep this app running
#
# Do not configure this file. Edit /etc/qiba-update-client.conf instead!
#

DESC="QIBA update client"

case "$1" in
  start)
	echo -n "Starting $DESC: "
	/usr/bin/qiba-update-client -s	
	;;

  stop)
	;;

  *)
	echo "Usage: $0 {start|stop}"
	exit 1
esac

exit 0
