mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-09 18:52:52 +01:00
15 lines
427 B
Plaintext
15 lines
427 B
Plaintext
{% if grains['role'] == 'so-sensor' or grains['role'] == 'so-eval' %}
|
|
{% set VERSION = salt['pillar.get']('static:soversion', 'HH1.1.4') %}
|
|
{% set MASTER = salt['grains.get']('master') %}
|
|
|
|
so-tcpreplay:
|
|
docker_container.running:
|
|
- network_mode: "host"
|
|
- image: {{ MASTER }}:5000/soshybridhunter/so-tcpreplay:{{ VERSION }}
|
|
- name: so-tcpreplay
|
|
- user: root
|
|
- interactive: True
|
|
- tty: True
|
|
|
|
{% endif %}
|