This commit is contained in:
John Smith 2022-12-25 11:46:32 -05:00
parent e1593baabf
commit e9da652e9a
3 changed files with 27 additions and 9 deletions

View file

@ -1,6 +1,11 @@
#!/bin/bash
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
if [[ "$(uname)" != "Linux" ]]; then
echo Not running Linux
exit 1
fi
if [ "$(lsb_release -d | grep -qEi 'debian|buntu|mint')" ]; then
echo Not a supported Linux
exit 1