mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
40 lines
608 B
Plaintext
40 lines
608 B
Plaintext
# Create a state directory
|
|
|
|
statedir:
|
|
file.directory:
|
|
- name: /opt/so/state
|
|
|
|
salttmp:
|
|
file.directory:
|
|
- name: /opt/so/tmp
|
|
|
|
# Install packages needed for the sensor
|
|
|
|
sensorpkgs:
|
|
pkg.installed:
|
|
- skip_suggestions: True
|
|
- pkgs:
|
|
- docker-ce
|
|
- python-docker
|
|
|
|
# Always keep these packages up to date
|
|
|
|
alwaysupdated:
|
|
pkg.latest:
|
|
- pkgs:
|
|
- openssl
|
|
- openssh-server
|
|
- bash
|
|
- skip_suggestions: True
|
|
|
|
# Set time to UTC
|
|
|
|
Etc/UTC:
|
|
timezone.system
|
|
|
|
# Set up docker network
|
|
dockernet:
|
|
docker_network.present:
|
|
- name: so-elastic-net
|
|
- driver: bridge
|