sh/shell/main.sh

46 lines
881 B
Bash
Raw Normal View History

2024-11-15 15:43:48 +00:00
[ "${ENV}" ] || export ENV="/etc/shell/main.sh"
2024-11-15 15:26:54 +00:00
main_env_root() {
dirname "${ENV}"
2024-11-13 11:03:00 +00:00
}
2023-05-12 21:38:42 +00:00
2024-11-12 06:44:21 +00:00
main_link_bashrc() {
2024-11-12 09:14:08 +00:00
local file="/etc/bash.bashrc"
rm --force "${file}"
2024-11-13 08:41:47 +00:00
ln --symbolic "${MAIN_USERS_FILE}" "${file}"
2023-05-12 21:38:42 +00:00
}
2023-05-09 20:09:01 +00:00
2023-05-14 12:46:23 +00:00
# import modules
2024-11-12 06:44:21 +00:00
main_import_modules() {
2024-11-12 09:14:08 +00:00
local file="${1}"
2024-11-13 08:43:27 +00:00
if [ -f "${file}" ]; then
2024-11-13 13:55:20 +00:00
local count ifs module modules path root
2024-11-13 11:41:37 +00:00
path="$(realpath --canonicalize-existing "${file}")"
2024-11-13 10:57:56 +00:00
root="$(dirname "${path}")"
2024-11-13 11:50:49 +00:00
modules="$(find "${root}" -type "f" -name "*.sh" -printf "%P
" | sort)"
2024-11-13 11:41:37 +00:00
ifs="${IFS}"
IFS="
"
2024-11-13 13:55:20 +00:00
count=0
echo
2024-11-13 14:01:02 +00:00
echo ". ${root}"
2024-11-13 11:41:37 +00:00
for module in ${modules}; do
2024-11-13 13:55:20 +00:00
count=$((count + 1))
printf "%02d" "${count}"
echo " ${module%.sh}"
2024-11-13 11:50:49 +00:00
module="${root}/${module}"
2024-11-13 08:43:27 +00:00
if [ "${module}" != "${path}" ]; then
2024-11-12 09:14:08 +00:00
. "${module}"
fi
done
2024-11-13 11:41:37 +00:00
IFS="${ifs}"
2024-11-12 09:14:08 +00:00
return 0
else
log_fatal "No file: ${file}"
return 1
fi
2023-05-09 20:15:40 +00:00
}
2023-05-09 20:09:01 +00:00
2024-11-15 15:26:54 +00:00
main_import_modules "${ENV}"