I can't reproduce this error, the code actually tries to
 create the directory and abort on failure.

  See 'createLoopbackImages()' in xen-create-image:

--
    #
    #  Make sure we have the relevant output directory.
    #
    my $output = $CONFIG{'dir'} . "/domains/" . $CONFIG{'hostname'};

    if ( ! -d $output )
    {
        #
        #  Catch errors with eval.
        #
        eval
        {
            mkpath( $output, 0, 0755 );
        };
        if ( $@ )
        {
            die "Cannot create directory tree $output - $@";
        }
    }
--


  Are you using etch?  If so that could be an issue with an older
 version of the code and I can't fix it in the stable release ..

Steve
-- 
# The Debian Security Audit Project.
http://www.debian.org/security/audit




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to