LINUX.ORG.RU
ФорумAdmin

ProFtpd настройка директорий


0

1

Помогите, пожалуйста, настроить директории в proftpd.
Директория: /home/test
содержит суб-директории: test2 и test3

Необходимо запретить DELETE файлов в /home/test, но оставить эту возможность для суб-директорий. Делаю:
<Directory /home/test>
<Limit DELE>
DenyAll
</Limit>
</Directory>

<Directory /home/test/test2>
<Limit ALL>
AllowAll
</Limit>
</Directory>

<Directory /home/test/test3>
<Limit ALL>
AllowAll
</Limit>
</Directory>

При этом удаление запрещено во всех директориях.


Ответ на: комментарий от r2d2

Суб-директории /home/test/test* все еще остаются заблокированными для удаления в них файлов с текущими настройками proftpd...

pawn
() автор топика

http://www.proftpd.org/docs/howto/Limit.html

What if you want to prevent a certain directory from being deleted, but you do want to allow sub-directories in that directory to be deletable? Using two <Directory> sections with <Limit> sections, you can do this, e.g.: 
  <Directory /path/to/dir>
    <Limit RMD XRMD>
      DenyAll
    </Limit>
  </Directory>

  <Directory /path/to/dir/*>
    <Limit RMD XRMD>
      AllowAll
    </Limit<
  >/Directory>
 Note the trailing "/*" suffix in the second <Directory> section; this means that the second <Directory> section configuration applies to the sub-directories, but not to the parent directory itself (which is covered by the first <Directory> section).
uspen ★★★★★
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.