Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 100043 | Differences between
and this patch

Collapse All | Expand All

(-)setup.py (-7 / +8 lines)
Lines 21-33 Link Here
21
      package_dir={'DenyHosts': 'DenyHosts'},
21
      package_dir={'DenyHosts': 'DenyHosts'},
22
      packages=["DenyHosts"],
22
      packages=["DenyHosts"],
23
      ##py_modules=["denyhosts_version"],
23
      ##py_modules=["denyhosts_version"],
24
      data_files=[(libpath, glob("denyhosts.cfg-dist")),
24
      ##data_files=[(libpath, glob("denyhosts.cfg-dist")),
25
                  (libpath, glob("denyhosts-daemon-initscript")),
25
                  ##(libpath, glob("denyhosts-daemon-initscript")),
26
                  (libpath, glob("setup.py")),
26
                  ##(libpath, glob("setup.py")),
27
                  (libpath, glob("daemon-control-dist")),
27
                  ##(libpath, glob("daemon-control-dist")),
28
                  (libpath, glob("CHANGELOG.txt")),
28
                  ##(libpath, glob("CHANGELOG.txt")),
29
                  (libpath, glob("README.txt")),
29
                  ##(libpath, glob("README.txt")),
30
                  (libpath, glob("LICENSE.txt"))],
30
                  ##(libpath, glob("LICENSE.txt"))],
31
      data_files=[],
31
      license="GPL",
32
      license="GPL",
32
      ##extra_path='denyhosts',
33
      ##extra_path='denyhosts',
33
      long_description="""
34
      long_description="""
(-)daemon-control-dist (-1 / +1 lines)
Lines 7-13 Link Here
7
7
8
DENYHOSTS_BIN   = "/usr/bin/denyhosts.py"
8
DENYHOSTS_BIN   = "/usr/bin/denyhosts.py"
9
DENYHOSTS_LOCK  = "/var/lock/subsys/denyhosts"
9
DENYHOSTS_LOCK  = "/var/lock/subsys/denyhosts"
10
DENYHOSTS_CFG   = "denyhosts.cfg"
10
DENYHOSTS_CFG   = "/etc/denyhosts.cfg"
11
11
12
12
13
###############################################
13
###############################################
(-)denyhosts.cfg-dist (-1 / +4 lines)
Lines 17-22 Link Here
17
# SuSE:
17
# SuSE:
18
#SECURE_LOG = /var/log/messages
18
#SECURE_LOG = /var/log/messages
19
#
19
#
20
# Metalog:
21
#SECURE_LOG = /var/log/sshd/current
22
#
20
########################################################################
23
########################################################################
21
24
22
25
Lines 90-96 Link Here
90
# WORK_DIR: the path that DenyHosts will use for writing data to
93
# WORK_DIR: the path that DenyHosts will use for writing data to
91
# (it will be created if it does not already exist).       
94
# (it will be created if it does not already exist).       
92
#
95
#
93
WORK_DIR = denyhosts
96
WORK_DIR = /var/lib/denyhosts
94
#
97
#
95
#######################################################################
98
#######################################################################
96
99

Return to bug 100043