#!/bin/sh
#============================================================================#
#                Backup critical information about system                    #
#============================================================================#
#  (C) Denis Smirnov <ds@seiros.ru>                             22 Aug 2008  #
#============================================================================#
. /usr/share/syskeeper/functions

if [ "-q" = "$1" ]; then
    PARAM=-q
elif [ "-f" = "$1" ]; then
    PARAM=-f
else
    PARAM=-q
fi

for s in /usr/share/syskeeper/backup_*; do
	if [ -x "$s" ] && ! [ -x "${s}_git" ]; then
		$s "$PARAM"
	fi
done

exit 0
