only run storage state if box has nvme

This commit is contained in:
Josh Patterson
2025-06-30 15:30:39 -04:00
parent 5035ec2539
commit dea9c149d7
4 changed files with 7 additions and 1 deletions

View File

@@ -3,5 +3,11 @@
# https://securityonion.net/license; you may not use this file except in compliance with the
# Elastic License 2.0.
{% set nvme_devices = salt['cmd.shell']("find /dev -name 'nvme*n1' 2>/dev/null") %}
{% if nvme_devices %}
include:
- storage.nsm_mount
{% endif %}