16 lines
335 B
Bash
16 lines
335 B
Bash
#!/usr/bin/env bash
|
|
|
|
scriptdir=$(dirname $(realpath $0))
|
|
# tempdir=$(mktemp -d)
|
|
|
|
if [[ $EUID -eq 0 ]]; then
|
|
echo "This script should not be run as root."
|
|
exit 1
|
|
fi
|
|
|
|
# ============================================================
|
|
|
|
. $scriptdir/configure_user.sh $@
|
|
|
|
# ============================================================
|