#!/bin/sh
# BitDefender update script, using cron service
# Copyright (C) 1996-2014 BITDEFENDER SRL. All rights reserved.

# Place this script under one of the following directories for daily
# or even hourly updates (find their equivalents on your system if
# they do not exactly match):
# /etc/cron.daily
# /etc/cron.hourly

# IMPORTANT: change this parameter according to your installation
BDSCAN=/opt/BitDefender-scanner/bin/bdscan

# Now let's run the update process
$BDSCAN --update

# End of the update script
