diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-06-26 19:09:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-26 19:09:50 +0200 |
commit | 7f08f1ff9b23cd722d3e2fb7b66b3d59fc35a9bf (patch) | |
tree | 68d7603f7d5ea2e217815f123cb5bc7aa158ccdf /op-mode-definitions | |
parent | 255dc6b42853d868cefee022b1bba77303635eb1 (diff) | |
parent | ae0ca9f5e54b841eb8ff37b41033bcca74d6827c (diff) | |
download | vyos-1x-7f08f1ff9b23cd722d3e2fb7b66b3d59fc35a9bf.tar.gz vyos-1x-7f08f1ff9b23cd722d3e2fb7b66b3d59fc35a9bf.zip |
Merge pull request #3723 from sever-sever/T751
T751: Remove ids suricata
Diffstat (limited to 'op-mode-definitions')
-rw-r--r-- | op-mode-definitions/suricata.xml.in | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/op-mode-definitions/suricata.xml.in b/op-mode-definitions/suricata.xml.in deleted file mode 100644 index a5025afba..000000000 --- a/op-mode-definitions/suricata.xml.in +++ /dev/null @@ -1,23 +0,0 @@ -<?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> |