forked from michael.heier/citadel-core
Add message for minimum version
This adds a check for Ubuntu 20.04 and refuses to start Citadel on that version
This commit is contained in:
parent
85f9886137
commit
af9692cb4e
|
@ -16,6 +16,17 @@ if [[ $UID != 0 ]]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
[[ -f /etc/lsb-release ]] && source /etc/lsb-release
|
||||
|
||||
if [ "${DISTRIB_ID}"="Ubuntu" ] && [ "${DISTRIB_RELEASE}"="20.04" ]; then
|
||||
echo "Please learn to read."
|
||||
echo "As our guide clearly mentions, Ubuntu 22.04 is the minimum version."
|
||||
echo "You can update, then you can use Citadel."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
exit 1
|
||||
|
||||
check_dependencies () {
|
||||
for cmd in "$@"; do
|
||||
if ! command -v $cmd >/dev/null 2>&1; then
|
||||
|
|
Loading…
Reference in New Issue
Block a user