Files
hestiacp/bin/v-check-rhel-utility
2024-06-14 00:14:42 +03:00

11 lines
166 B
Bash
Executable File

#!/bin/bash
# info: Check rehel or not
# options: none
# example: v-check-rhel-utility
if [ -f '/etc/redhat-release' ]; then
echo -n "+"
else
echo -n "-"
fi