#!/bin/bash
#
# Guralp Configuration System
#   Copyright (c) 2007-2009 Guralp Systems Ltd. All rights reserved.
#
#   Control what options are shown on main screen.
#   Big NOOP at present as there are currently no options.
#

# Load support functions
script_dir=$(dirname $0)
. $script_dir/functions.sh

do_read() {
	true
}

do_check() {
	gcs_read_vars

	true
}

do_write() {
	true
}

do_bar() {
	true
}


case "X$1" in
X--check)	do_check	;;
X--write)	do_write	;;
X--read)	do_read		;;
X--navbar)	do_bar		;;
*)		exit 1		;;
esac

gcs_cleanup
exit 0
