MOON
Server: Apache
System: Linux vps.thepromohut.com 2.6.18-398.el5 #1 SMP Tue Sep 16 20:51:48 EDT 2014 i686
User: caretrak (507)
PHP: 5.2.10
Disabled: NONE
Upload Files
File: //etc/rc.d/rc1.d/K10acronis_schedule
#!/bin/bash
#
#	/etc/rc.d/init.d/acronis_trueimage_schedule
#
# Handle Acronis True Image startup/shutdown tasks
# 
# chkconfig: 2345 90 10
# description: Start True Image startup/shutdown tasks
# $Id

ATILS_DIR=/usr/lib/Acronis

start() {
  echo -n "Running Acronis True Image startup tasks..."
  $ATILS_DIR/Schedule/schedwrapper -m startup
  return $?
}	

stop() {
  echo -n "Running Acronis True Image shutdown tasks..."
  $ATILS_DIR/Schedule/schedwrapper -m shutdown
  return $?
}

case "$1" in
    start)
	start
	;;
    stop)
	stop
	;;
    *)
	echo "Usage: acronis_trueimage_schedule {start|stop}"
	exit 1
	;;
esac
exit $?