summaryrefslogtreecommitdiff
path: root/op-mode-definitions/suricata.xml.in
blob: a5025afba8b0b894c046d37df5d8100f522f4cb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0"?>
<interfaceDefinition>
  <node name="update">
    <children>
      <node name="suricata">
        <properties>
          <help>Update Suricata</help>
        </properties>
        <command>if test -f /run/suricata/suricata.yaml; then sudo suricata-update --suricata-conf /run/suricata/suricata.yaml; sudo systemctl restart suricata; else echo "Service Suricata not configured"; fi </command>
      </node>
    </children>
  </node>
  <node name="restart">
    <children>
      <node name="suricata">
        <properties>
          <help>Restart Suricata service</help>
        </properties>
        <command>if systemctl is-active --quiet suricata; then sudo systemctl restart suricata.service; else echo "Service Suricata not configured"; fi</command>
      </node>
    </children>
  </node>
</interfaceDefinition>