Added first checks to check hosts configuration

This commit is contained in:
Martin Berghaus
2025-03-08 09:33:35 +01:00
parent bf19c05148
commit 4ca994c698
25 changed files with 284 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#!/bin/bash
_CURRENT_POOL='zpool1'
#Check if the tool 'zpool' is available, then
#retrieve the property 'ashift' from 'zpool1', without header and compare the result with '12'
zpool version &> /dev/null \
&& [ "$(zpool get ashift -Ho value ${_CURRENT_POOL})" == "12" ] \
&& exit 0
exit 1