Last change
on this file was 740, checked in by Silvan Scherrer, 13 years ago |
Samba Server: update vendor to 3.6.0
|
File size:
1.1 KB
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 | # AD-Bench settings
|
---|
3 | #
|
---|
4 | # Copyright (C) 2009 Kai Blin <kai@samba.org>
|
---|
5 | #
|
---|
6 | # This file is part of AD-Bench, an Active Directory benchmark tool
|
---|
7 | #
|
---|
8 | # AD-Bench is free software: you can redistribute it and/or modify
|
---|
9 | # it under the terms of the GNU General Public License as published by
|
---|
10 | # the Free Software Foundation, either version 3 of the License, or
|
---|
11 | # (at your option) any later version.
|
---|
12 | #
|
---|
13 | # AD-Bench is distributed in the hope that it will be useful,
|
---|
14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
16 | # GNU General Public License for more details.
|
---|
17 | #
|
---|
18 | # You should have received a copy of the GNU General Public License
|
---|
19 | # along with AD-Bench. If not, see <http://www.gnu.org/licenses/>.
|
---|
20 |
|
---|
21 |
|
---|
22 | DATE=date
|
---|
23 | BC=bc
|
---|
24 | SED=sed
|
---|
25 | DATE_FORMATSTR="+%s.%N"
|
---|
26 |
|
---|
27 | KINIT=kinit
|
---|
28 | # MIT krb < 1.6
|
---|
29 | KINIT_PARAM_OLD="--password-file=STDIN"
|
---|
30 | # MIT krb >= 1.6
|
---|
31 | KINIT_PARAM_NEW=""
|
---|
32 |
|
---|
33 | KDESTROY=kdestroy
|
---|
34 | SEQ=seq
|
---|
35 |
|
---|
36 | NEW_KRB5CCNAME=/tmp/ad_test_ccname
|
---|
37 |
|
---|
38 | NET="${HOME}/samba/bin/net"
|
---|
39 | CONFIG_FILE=`dirname $0`/smb.conf
|
---|
40 |
|
---|
41 | RUNS=`dirname $0`/runs.txt
|
---|
Note:
See
TracBrowser
for help on using the repository browser.