diff options
author | Michael Adam <obnox@samba.org> | 2014-07-22 00:31:16 +0200 |
---|---|---|
committer | Amitay Isaacs <amitay@samba.org> | 2014-07-23 17:37:34 +0200 |
commit | 11fa417037a0b1df4da7311114d243cf0a764324 (patch) | |
tree | 53942e4c8c7dbbdcaad5dd12d46a06e5797eeee6 | |
parent | 9d6f187b5811faed6e9b6c4bc61e42175c0c0ae2 (diff) | |
download | samba-11fa417037a0b1df4da7311114d243cf0a764324.tar.gz samba-11fa417037a0b1df4da7311114d243cf0a764324.tar.xz samba-11fa417037a0b1df4da7311114d243cf0a764324.zip |
selftest: check for fs specific options of the share dir only after creating it
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
Autobuild-User(master): Amitay Isaacs <amitay@samba.org>
Autobuild-Date(master): Wed Jul 23 17:37:34 CEST 2014 on sn-devel-104
-rwxr-xr-x | selftest/target/Samba3.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/selftest/target/Samba3.pm b/selftest/target/Samba3.pm index a6d85ccd6f..6c34dbb919 100755 --- a/selftest/target/Samba3.pm +++ b/selftest/target/Samba3.pm @@ -875,8 +875,6 @@ sub provision($$$$$$) my $nmbdsockdir="$prefix_abs/nmbd"; unlink($nmbdsockdir); - my $fs_specific_conf = $self->get_fs_specific_conf($shrdir); - ## ## create the test directory layout ## @@ -890,6 +888,8 @@ sub provision($$$$$$) } mkdir($_, 0777) foreach(@dirs); + my $fs_specific_conf = $self->get_fs_specific_conf($shrdir); + ## ## lockdir and piddir must be 0755 ## |