Added fixes for php manipulation and system config

This commit is contained in:
Alexey Berezhok
2024-06-14 00:14:42 +03:00
parent 12d787ea87
commit b52ec2c862
8 changed files with 158 additions and 39 deletions

11
bin/v-check-rhel-utility Executable file
View File

@@ -0,0 +1,11 @@
#!/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