#!/usr/bin/env bash
################################################################################
# Check Aerospike Server dependencies
################################################################################

if [ $EUID -ne 0 ]; then
	echo "This script requires root or sudo privileges."
	exit 1
fi

################################################################################
# Python check

`python3 -c "pass" 2>/dev/null;` || echo "WARN: Could not find python3. Asloglatency may fail."

################################################################################
