mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
94 lines
2.1 KiB
Plaintext
94 lines
2.1 KiB
Plaintext
# Copyright Security Onion Solutions LLC and/or licensed to Security Onion Solutions LLC under one
|
|
# or more contributor license agreements. Licensed under the Elastic License 2.0 as shown at
|
|
# https://securityonion.net/license; you may not use this file except in compliance with the
|
|
# Elastic License 2.0.
|
|
|
|
{% from 'allowed_states.map.jinja' import allowed_states %}
|
|
{% if sls.split('.')[0] in allowed_states %}
|
|
|
|
{% from 'vars/globals.map.jinja' import GLOBALS %}
|
|
{% from "pcap/config.map.jinja" import PCAPMERGED %}
|
|
{% from 'bpf/pcap.map.jinja' import PCAPBPF, PCAP_BPF_STATUS, PCAP_BPF_CALC, STENO_BPF_COMPILED %}
|
|
|
|
# PCAP Section
|
|
stenographergroup:
|
|
group.present:
|
|
- name: stenographer
|
|
- gid: 941
|
|
|
|
stenographer:
|
|
user.present:
|
|
- uid: 941
|
|
- gid: 941
|
|
- home: /opt/so/conf/steno
|
|
|
|
stenoconfdir:
|
|
file.directory:
|
|
- name: /opt/so/conf/steno
|
|
- user: 941
|
|
- group: 939
|
|
- makedirs: True
|
|
|
|
pcap_sbin:
|
|
file.recurse:
|
|
- name: /usr/sbin
|
|
- source: salt://pcap/tools/sbin
|
|
- user: 939
|
|
- group: 939
|
|
- file_mode: 755
|
|
|
|
{% if PCAPBPF and not PCAP_BPF_STATUS %}
|
|
stenoPCAPbpfcompilationfailure:
|
|
test.configurable_test_state:
|
|
- changes: False
|
|
- result: False
|
|
- comment: "BPF Syntax Error - Discarding Specified BPF. Error: {{ PCAP_BPF_CALC['stderr'] }}"
|
|
{% endif %}
|
|
|
|
stenoconf:
|
|
file.managed:
|
|
- name: /opt/so/conf/steno/config
|
|
- source: salt://pcap/files/config.jinja
|
|
- user: stenographer
|
|
- group: stenographer
|
|
- mode: 644
|
|
- template: jinja
|
|
- defaults:
|
|
PCAPMERGED: {{ PCAPMERGED }}
|
|
STENO_BPF_COMPILED: "{{ STENO_BPF_COMPILED }}"
|
|
|
|
stenoca:
|
|
file.directory:
|
|
- name: /opt/so/conf/steno/certs
|
|
- user: 941
|
|
- group: 939
|
|
|
|
pcaptmpdir:
|
|
file.directory:
|
|
- name: /nsm/pcaptmp
|
|
- user: 941
|
|
- group: 941
|
|
- makedirs: True
|
|
|
|
pcapindexdir:
|
|
file.directory:
|
|
- name: /nsm/pcapindex
|
|
- user: 941
|
|
- group: 941
|
|
- makedirs: True
|
|
|
|
stenolog:
|
|
file.directory:
|
|
- name: /opt/so/log/stenographer
|
|
- user: 941
|
|
- group: 941
|
|
- makedirs: True
|
|
|
|
{% else %}
|
|
|
|
{{sls}}_state_not_allowed:
|
|
test.fail_without_changes:
|
|
- name: {{sls}}_state_not_allowed
|
|
|
|
{% endif %}
|