#!/bin/sh set -e if [ -z "$CC03_ROOT" ]; then echo "Error: CC03_ROOT not set, nothing done" exit 1 fi if [ -z "$CC03_PART" ]; then echo "Error: CC03_PART not set, nothing done" exit 1 fi if [ -z "$CC03_TARGET" ]; then echo "Error: CC03_TARGET not set, nothing done" exit 1 fi if [ -z "$CC03_TMP" ]; then echo "Error: CC03_TMP not set, nothing done" exit 1 fi if [ -z "$CC03_MAXIMUM" ]; then echo "Error: CC03_MAXIMUM not set, nothing done" exit 1 fi if [ -z "$CC03_CDRECORD_OPTIONS" ]; then echo "Error: CC03_CDRECORD_OPTIONS not set, nothing done" exit 1 fi if [ -z "$CC03_BOOT" ]; then echo "Error: CC03_BOOT not set, nothing done" exit 1 fi exit 0