Blob Blame History Raw
#!/bin/bash

#############################################################################
# Copyright (c) 2003,2004,2009 Novell, Inc.
# All Rights Reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of version 2 of the GNU General Public License as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.   See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, contact Novell, Inc.
#
# To contact Novell about this file by physical or electronic mail,
# you may find current contact information at www.novell.com
#############################################################################

# check that series.conf and config.conf match reality

# Check the patches
scripts/guards --path "$(echo patches.* | sed -e 's/ /:/g')" \
	       --check --config=series.conf

ret=$?
if (( $ret != 0 )); then
   echo "series.conf needs more work, exiting... "
   exit $ret
fi

# Check the configuration files
scripts/guards --prefix config --check --config=config.conf