]> arthur.barton.de Git - netatalk.git/blob - contrib/permtest/permtest.cfg
permission testing tool, from Frank Lahm
[netatalk.git] / contrib / permtest / permtest.cfg
1 # Exactly follow this layout! Don't put extra white space in config lines !!
2 # Order doesn't matter.
3
4 # We use a ssh executed stat command to verify uid,gid and mode. Therefore ssh access with
5 # PKI authentication must be setup and working!
6 sshLogin = USER@HOST
7
8 # self explaining
9 mountAFPVolume = afp://USER:PASSWORD@HOST/VOLUME
10
11 # These files will be created
12 createFile = PATH_TO_FILE_ON_CLIENT
13
14 # These files will be stat'ed. You can use different server-side paths here for files
15 # created with "createFile" directive
16 testFile = PATH_TO_FILE_ON_SERVER,user=USERNAME,group=GROUPNAME,mode=MODE
17
18 # These dirs will be created
19 createDir = PATH_TO_DIR_ON_CLIENT
20
21 # These will be verified.
22 testDir = PATH_TO_DIR_ON_CLIENT,user=USERNAME,group=GROUPNAME,mode=MODE
23
24 # EOF. Leave this as a last line. We delibaretly chop in perl which might otherwise truncate
25 # your last "testDir" definition.