18 lines
567 B
Python
18 lines
567 B
Python
from django.conf import settings
|
|
|
|
from django.utils.translation import ugettext, ugettext_lazy as _
|
|
|
|
|
|
USERS_SYSTEMUSER_HOME = getattr(settings, 'USERES_SYSTEMUSER_HOME', '/home/%(username)s')
|
|
|
|
USERS_FTP_LOG_PATH = getattr(settings, 'USERS_FTP_LOG_PATH', '/var/log/vsftpd.log')
|
|
|
|
USERS_SHELLS = getattr(settings, 'USERS_SHELLS', (
|
|
('/bin/false', _("No shell, FTP only")),
|
|
('/bin/rsync', _("No shell, SFTP/RSYNC only")),
|
|
('/bin/bash', "/bin/bash"),
|
|
('/bin/sh', "/bin/sh"),
|
|
))
|
|
|
|
USERS_DEFAULT_SHELL = getattr(settings, 'USERS_DEFAULT_SHELL', '/bin/false')
|