#!/bin/sh
set -e

#simple to start...
for script in /etc/menu-methods/*; do
	if [ -x "$script" ]; then
		$script
	fi
done
