1
0
mirror of synced 2026-02-05 07:24:49 +00:00

2005-12-24 19:10:38 by steve

Added to the repository, make sure hooks are executable.
This commit is contained in:
steve
2005-12-24 19:10:38 +00:00
parent c1219d48f5
commit abb2656fe5

18
tests/hooks.t Normal file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/perl -w
#
# Test that all the hook files we install are executable.
#
#
use strict;
use Test::More qw( no_plan );
foreach my $file ( glob( "etc/xen-create-image.d/*" ) )
{
if ( ! -d $file )
{
ok( -e $file, "$file" );
ok( -x $file, " File is executable: $file" );
}
}