Skip to content

Commit

Permalink
add: Add new global variables to wazuh_testing generic module #2462
Browse files Browse the repository at this point in the history
  • Loading branch information
jmv74211 committed Jan 24, 2022
1 parent 25bf36a commit c729a0d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deps/wazuh_testing/wazuh_testing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import sys
import os
import yaml
import platform
from collections import defaultdict


Expand All @@ -17,6 +18,9 @@
else:
WAZUH_PATH = os.path.join("/var", "ossec")

CLIENT_KEYS_PATH = os.path.join(WAZUH_PATH, 'etc' if platform.system() == 'Linux' else '', 'client.keys')
DB_PATH = os.path.join(WAZUH_PATH, 'queue', 'db')

UDP = 'UDP'
TCP = 'TCP'
TCP_UDP = 'TCP,UDP'
Expand Down

0 comments on commit c729a0d

Please sign in to comment.