#!/bin/sh

#     DESCRIPTION
#
# Create /image directory.
# There are propagator will mount CD-ROM.


#     REQUIRES
#
# Nothing


#     INFO
#

NAME="stage1-propagator"

verbose()
{
    if [ -n "$GLOBAL_VERBOSE" ]; then
        echo "HOOK: $NAME: $@"
    fi
}

verbose "has started"

# stage1 need this
mkdir -p /image

verbose "finished"
