Adds the five missing worker units plus a grouping target so `systemctl start decnet.target` brings the whole fleet up in order. Sniffer gets CAP_NET_RAW for scapy; collector and mutator join the docker supplementary group for docker.sock access. Repoints Documentation= across all existing units to the canonical git.resacachile.cl wiki.
20 lines
737 B
SYSTEMD
20 lines
737 B
SYSTEMD
[Unit]
|
|
Description=DECNET honeypot framework (all master-host workers)
|
|
Documentation=https://git.resacachile.cl/anti/DECNET/wiki/Workers
|
|
# Bring workers up in dependency order: bus first (everything else publishes
|
|
# heartbeats to it), then the API + data-plane workers. systemd resolves the
|
|
# actual ordering via each unit's own After=/Wants= on decnet-bus.service —
|
|
# this target is a convenience grouping, not an ordering primitive.
|
|
Wants=decnet-bus.service \
|
|
decnet-api.service \
|
|
decnet-web.service \
|
|
decnet-collector.service \
|
|
decnet-profiler.service \
|
|
decnet-sniffer.service \
|
|
decnet-prober.service \
|
|
decnet-mutator.service
|
|
After=decnet-bus.service
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|