lazy/init_user.sh
2024-08-02 19:16:07 +08:00

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 $@
# ============================================================