Skip to content

Commit

Permalink
PKG: fix debian path patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Wagner committed Jun 17, 2019
1 parent eb7af96 commit 5c92d58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions debian/patches/fix-intelmq-paths.patch
Expand Up @@ -6,11 +6,11 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/intelmq/__init__.py
+++ b/intelmq/__init__.py
@@ -1,7 +1,7 @@
from .version import __version__
from .version import __version__, __version_info__
import os

-if os.getenv('INTELMQ_PATHS_NO_OPT', False):
+if not os.getenv('INTELMQ_PATHS_OPT', False):
ROOT_DIR = ""
CONFIG_DIR = "/etc/intelmq/"
DEFAULT_LOGGING_LEVEL = "INFO"
BOTS_FILE = os.path.join(CONFIG_DIR, "BOTS")

0 comments on commit 5c92d58

Please sign in to comment.