mirror of
https://github.com/vee1e/PcapMonkey.git
synced 2026-09-01 17:57:29 +00:00
11 lines
344 B
Bash
Executable file
11 lines
344 B
Bash
Executable file
#!/bin/bash
|
|
|
|
sudo chown 1000:1000 ./config/filebeat/filebeat.yml
|
|
sudo chown -R 1000:1000 ./config/filebeat/modules.d/
|
|
|
|
sudo chmod 644 ./config/filebeat/filebeat.yml
|
|
sudo chmod 644 ./config/filebeat/modules.d/*
|
|
|
|
if [[ "$1" == "win" ]]; then
|
|
sed -i -e 's/\/var\/lib\/suricata\/rules\//\/var\/lib\/suricata\/rules/g' ./docker-compose.yaml
|
|
fi
|